Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodney Baker <rodney.baker@iinet.net.au>2010-07-03 19:35:23 +0400
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-07-03 19:35:23 +0400
commit2d525ef483df1adbc6e22bbb27467033a90cc196 (patch)
tree5293bacc005b5114137a48fb743c150ca06ac0f6 /libavcodec/libgsm.c
parenta07a06b0334529be6d047db6b0c85a85182e2f42 (diff)
Change all occurences of "inofficial" to "unofficial" in code, comments
and options. Keep old options until next major version bump. Patch by Rodney Baker, rodney d baker a iinet d net d au Originally committed as revision 24021 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libgsm.c')
-rw-r--r--libavcodec/libgsm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c
index 1062099a7a..a7bc68ad71 100644
--- a/libavcodec/libgsm.c
+++ b/libavcodec/libgsm.c
@@ -54,7 +54,7 @@ static av_cold int libgsm_init(AVCodecContext *avctx) {
if (avctx->sample_rate != 8000) {
av_log(avctx, AV_LOG_ERROR, "Sample rate 8000Hz required for GSM, got %dHz\n",
avctx->sample_rate);
- if(avctx->strict_std_compliance > FF_COMPLIANCE_INOFFICIAL)
+ if(avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL)
return -1;
}
if (avctx->bit_rate != 13000 /* Official */ &&
@@ -62,7 +62,7 @@ static av_cold int libgsm_init(AVCodecContext *avctx) {
avctx->bit_rate != 0 /* Unknown; a.o. mov does not set bitrate when decoding */ ) {
av_log(avctx, AV_LOG_ERROR, "Bitrate 13000bps required for GSM, got %dbps\n",
avctx->bit_rate);
- if(avctx->strict_std_compliance > FF_COMPLIANCE_INOFFICIAL)
+ if(avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL)
return -1;
}
}