cosmetics: reindent and pretty-print

This commit is contained in:
Justin Ruggles 2011-09-12 12:18:00 -04:00
parent 8febd6afbc
commit 88f908fbdc

View File

@ -45,7 +45,7 @@ static av_cold int libgsm_encode_init(AVCodecContext *avctx) {
if (avctx->sample_rate != 8000) { if (avctx->sample_rate != 8000) {
av_log(avctx, AV_LOG_ERROR, "Sample rate 8000Hz required for GSM, got %dHz\n", av_log(avctx, AV_LOG_ERROR, "Sample rate 8000Hz required for GSM, got %dHz\n",
avctx->sample_rate); avctx->sample_rate);
if(avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL) if (avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL)
return -1; return -1;
} }
if (avctx->bit_rate != 13000 /* Official */ && if (avctx->bit_rate != 13000 /* Official */ &&
@ -53,7 +53,7 @@ static av_cold int libgsm_encode_init(AVCodecContext *avctx) {
avctx->bit_rate != 0 /* Unknown; a.o. mov does not set bitrate when decoding */ ) { 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", av_log(avctx, AV_LOG_ERROR, "Bitrate 13000bps required for GSM, got %dbps\n",
avctx->bit_rate); avctx->bit_rate);
if(avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL) if (avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL)
return -1; return -1;
} }