Displaying 2 results from an estimated 2 matches for "nb_qual".
2005 Feb 27
2
SPEEX_GET_QUALITY
...diff -u ../original/speex-1.1.6/libspeex/sb_celp.c libspeex/sb_celp.c
--- ../original/speex-1.1.6/libspeex/sb_celp.c 2004-07-15 01:16:52.000000000 -0400
+++ libspeex/sb_celp.c 2005-02-27 08:33:38.000000000 -0500
@@ -1217,6 +1217,13 @@
speex_encoder_ctl(st->st_low, SPEEX_SET_MODE, &nb_qual);
}
break;
+ case SPEEX_GET_QUALITY:
+ {
+ int quality;
+ speex_encoder_ctl(st->st_low, SPEEX_GET_QUALITY, &quality);
+ (*(int*)ptr) = quality;
+ }
+ break;
case SPEEX_SET_COMPLEXITY:
speex_encoder_ctl(st->st_low, SPEEX_SET_COMPLE...
2005 Feb 27
0
SPEEX_GET_QUALITY
.../speex-1.1.6/libspeex/sb_celp.c libspeex/sb_celp.c
> --- ../original/speex-1.1.6/libspeex/sb_celp.c 2004-07-15 01:16:52.000000000 -0400
> +++ libspeex/sb_celp.c 2005-02-27 08:33:38.000000000 -0500
> @@ -1217,6 +1217,13 @@
> speex_encoder_ctl(st->st_low, SPEEX_SET_MODE, &nb_qual);
> }
> break;
> + case SPEEX_GET_QUALITY:
> + {
> + int quality;
> + speex_encoder_ctl(st->st_low, SPEEX_GET_QUALITY, &quality);
> + (*(int*)ptr) = quality;
> + }
> + break;
> case SPEEX_SET_COMPLEXITY:
>...