[FFmpeg-cvslog] cosmetics: reindent and pretty-print
Justin Ruggles
git at videolan.org
Tue Sep 27 02:25:27 CEST 2011
ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Mon Sep 12 12:18:00 2011 -0400| [88f908fbdc19dec17f2bb223e6d1fffc3408e6a5] | committer: Justin Ruggles
cosmetics: reindent and pretty-print
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=88f908fbdc19dec17f2bb223e6d1fffc3408e6a5
---
libavcodec/libgsm.c | 28 ++++++++++++++--------------
1 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c
index afbeba1..951e736 100644
--- a/libavcodec/libgsm.c
+++ b/libavcodec/libgsm.c
@@ -42,20 +42,20 @@ static av_cold int libgsm_encode_init(AVCodecContext *avctx) {
return -1;
}
- 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_UNOFFICIAL)
- return -1;
- }
- if (avctx->bit_rate != 13000 /* Official */ &&
- avctx->bit_rate != 13200 /* Very common */ &&
- 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_UNOFFICIAL)
- return -1;
- }
+ 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_UNOFFICIAL)
+ return -1;
+ }
+ if (avctx->bit_rate != 13000 /* Official */ &&
+ avctx->bit_rate != 13200 /* Very common */ &&
+ 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_UNOFFICIAL)
+ return -1;
+ }
avctx->priv_data = gsm_create();
More information about the ffmpeg-cvslog
mailing list