mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
cosmetics: reindent and pretty-print
This commit is contained in:
parent
8febd6afbc
commit
88f908fbdc
1 changed files with 14 additions and 14 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue