aboutsummaryrefslogtreecommitdiff
path: root/DvdLib/Ifo/VideoAttributes.cs
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2019-03-07 23:57:51 +0300
committerGitHub <noreply@github.com>2019-03-07 23:57:51 +0300
commit75996476a7ce63134e37935e8ddeddfdb0d63a5d (patch)
treefccdb1c92505c080149f3abf4fc63cf3392fd5cb /DvdLib/Ifo/VideoAttributes.cs
parent5cb3f04389fc251c7be6c6098c901c83170f5f83 (diff)
parent65c0b486aaa6d02855a6915edfb880da691b4709 (diff)
Merge pull request #1061 from Bond-009/dead
Remove dead code
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()
- {
- }
- }
-}