Commit 7b9761c3 authored by Benjamin Pracht's avatar Benjamin Pracht

* all : fix channels selection in the sout options dialog

parent 08885df7
......@@ -21,8 +21,8 @@
</array>
<key>IBOpenObjects</key>
<array>
<integer>1617</integer>
<integer>29</integer>
<integer>1617</integer>
<integer>21</integer>
</array>
<key>IBSystem Version</key>
......
......@@ -558,6 +558,12 @@
[o_transcode_string appendFormat: @"acodec=\"%@\",ab=\"%@\"",
[o_transcode_audio_selector titleOfSelectedItem],
[o_transcode_audio_bitrate stringValue]];
if ( ![[o_transcode_audio_channels stringValue]
isEqualToString: @""])
{
[o_transcode_string appendFormat: @",channels=\"%@\"",
[o_transcode_audio_channels stringValue]];
}
}
[o_transcode_string appendString:@"}:"];
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment