Skip to content

Commit 9d6c912

Browse files
committed
Minor fix for NTSC support
1 parent b328b4d commit 9d6c912

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
/MediaPool/obj
77
/MediaUpload/obj
88
/packages
9+
/*.suo

SwitcherLib/Switcher.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ public int GetVideoWidth()
115115

116116
case 2160:
117117
return 3840;
118-
case 480;
118+
119+
case 480:
119120
return 720;
120121
default:
121122
throw new SwitcherLibException(String.Format("Unsupported video height: {0}", videoHeight.ToString()));

readme.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ To view the output in JSON format:
6464
## Requirements
6565

6666
- [Microsoft .NET Framework 4.5](http://www.microsoft.com/en-gb/download/details.aspx?id=30653)
67-
- [Blackmagic ATEM Switchers Update 6.2](https://www.blackmagicdesign.com/uk/support/family/atem-live-production-switchers) or later
67+
- [Blackmagic ATEM Switchers Update 7.3](https://www.blackmagicdesign.com/uk/support/family/atem-live-production-switchers) or later
6868

6969
## Supported Image Formats
7070

@@ -98,6 +98,12 @@ If you're using this for anything interesting, I'd love to hear about it.
9898

9999
## ChangeLog
100100

101+
### Version 2.0.2 - 2018-02-02:
102+
- Add support for NTSC SD
103+
104+
### Version 2.0.1 - 2018-02-01:
105+
- Built against Blackmagic Switcher SDK 7.3
106+
101107
### Version 2.0.0 - 2014-12-24:
102108
- Rebuilt from decompiled source of original binary
103109
- Added enumerating of the media pool

0 commit comments

Comments
 (0)