aboutsummaryrefslogtreecommitdiff
path: root/DvdLib/Ifo/VideoAttributes.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-03-07 19:27:43 +0100
committerBond-009 <bond.009@outlook.com>2019-03-07 19:27:43 +0100
commit65c0b486aaa6d02855a6915edfb880da691b4709 (patch)
treeb6df99a3ef695aeeab61ba5ab7063b0283fc9aa3 /DvdLib/Ifo/VideoAttributes.cs
parent8a53b609127cca6feee06b34f12b6d21a9eb37c7 (diff)
Remove dead code
What it says on the tin
Diffstat (limited to 'DvdLib/Ifo/VideoAttributes.cs')
-rw-r--r--DvdLib/Ifo/VideoAttributes.cs46
1 files changed, 0 insertions, 46 deletions
diff --git a/DvdLib/Ifo/VideoAttributes.cs b/DvdLib/Ifo/VideoAttributes.cs
deleted file mode 100644
index 8b3996715..000000000
--- a/DvdLib/Ifo/VideoAttributes.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-namespace DvdLib.Ifo
-{
- public enum VideoCodec
- {
- MPEG1 = 0,
- MPEG2 = 1,
- }
-
- public enum VideoFormat
- {
- NTSC = 0,
- PAL = 1,
- }
-
- public enum AspectRatio
- {
- ar4to3 = 0,
- ar16to9 = 3
- }
-
- public enum FilmMode
- {
- None = -1,
- Camera = 0,
- Film = 1,
- }
-
- public class VideoAttributes
- {
- public readonly VideoCodec Codec;
- public readonly VideoFormat Format;
- public readonly AspectRatio Aspect;
- public readonly bool AutomaticPanScan;
- public readonly bool AutomaticLetterBox;
- public readonly bool Line21CCField1;
- public readonly bool Line21CCField2;
- public readonly int Width;
- public readonly int Height;
- public readonly bool Letterboxed;
- public readonly FilmMode FilmMode;
-
- public VideoAttributes()
- {
- }
- }
-}