mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			368 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			368 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| using System.IO;
 | |
| 
 | |
| namespace DvdLib.Ifo
 | |
| {
 | |
|     public class CellPositionInfo
 | |
|     {
 | |
|         public readonly ushort VOBId;
 | |
|         public readonly byte CellId;
 | |
| 
 | |
|         internal CellPositionInfo(BinaryReader br)
 | |
|         {
 | |
|             VOBId = br.ReadUInt16();
 | |
|             br.ReadByte();
 | |
|             CellId = br.ReadByte();
 | |
|         }
 | |
|     }
 | |
| }
 |