Displaying 2 results from an estimated 2 matches for "with_hard_cbr".
2016 Apr 26
3
[opus-tools] [PATCH] Add channel-mapping argument to force channel mapping
...;,no_argument,NULL, 0},
{"no-downmix",no_argument,NULL, 0},
@@ -337,6 +340,7 @@ int main(int argc, char **argv)
opus_int32 coding_rate=48000;
opus_int32 frame_size=960;
int chan=2;
+ int channel_mapping=-1;
int with_hard_cbr=0;
int with_cvbr=0;
int expect_loss=0;
@@ -465,6 +469,12 @@ int main(int argc, char **argv)
fprintf(stderr,"Expected loss is a percent and must be 0-100.\n");
exit(1);
}
+ }else if(strcmp(long_options[option_i...
2016 Apr 26
0
Antw: [opus-tools] [PATCH] Add channel-mapping argument to force channel mapping
..."no-downmix",no_argument,NULL, 0},
> @@ -337,6 +340,7 @@ int main(int argc, char **argv)
> opus_int32 coding_rate=48000;
> opus_int32 frame_size=960;
> int chan=2;
> + int channel_mapping=-1;
> int with_hard_cbr=0;
> int with_cvbr=0;
> int expect_loss=0;
> @@ -465,6 +469,12 @@ int main(int argc, char **argv)
> fprintf(stderr,"Expected loss is a percent and must be
> 0-100.\n");
> exit(1);
> }
> +...