search for: expect_loss

Displaying 2 results from an estimated 2 matches for "expect_loss".

Did you mean: expect_close
2016 Apr 26
3
[opus-tools] [PATCH] Add channel-mapping argument to force channel mapping
...@@ -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_index].name,"channel-mapping")==0){ + channel_mapping=...
2016 Apr 26
0
Antw: [opus-tools] [PATCH] Add channel-mapping argument to force channel mapping
...rgc, 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_index].name,"channel-mapping&qu...