diff options
author | Rodney Baker <rodney.baker@iinet.net.au> | 2010-07-03 15:35:23 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-07-03 15:35:23 +0000 |
commit | 2d525ef483df1adbc6e22bbb27467033a90cc196 (patch) | |
tree | 5293bacc005b5114137a48fb743c150ca06ac0f6 /libavcodec/libgsm.c | |
parent | a07a06b0334529be6d047db6b0c85a85182e2f42 (diff) | |
download | ffmpeg-2d525ef483df1adbc6e22bbb27467033a90cc196.tar.gz |
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.c | 4 |
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; } } |