diff options
| author | Patrick Barron <barronpm@gmail.com> | 2023-01-20 07:29:45 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-20 13:29:45 +0100 |
| commit | db1913b08fac0749133634efebd1ee7a7876147a (patch) | |
| tree | a33ab9c840b4ed48f95cf5c833204bcc64a93314 /DvdLib/Ifo/CellPositionInfo.cs | |
| parent | e448797df06c1b3d645349ac65ab142e3785caae (diff) | |
Remove DvdLib (#9068)
* Remove DvdLib
* Update error message for blu-ray folders
Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com>
* Remove BDInfo
* Remove MediaEncoder.GetPrimaryPlaylistVobFiles
* Remove BlurayDiscInfo
Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com>
Diffstat (limited to 'DvdLib/Ifo/CellPositionInfo.cs')
| -rw-r--r-- | DvdLib/Ifo/CellPositionInfo.cs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/DvdLib/Ifo/CellPositionInfo.cs b/DvdLib/Ifo/CellPositionInfo.cs deleted file mode 100644 index 216aa0f77..000000000 --- a/DvdLib/Ifo/CellPositionInfo.cs +++ /dev/null @@ -1,19 +0,0 @@ -#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(); - } - } -} |
