avcodec/dnxhdenc: fix indentation issue

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol
2017-04-01 18:50:30 +02:00
parent f078bc4c5e
commit 358d4524cc

View File

@@ -364,9 +364,9 @@ fail:
static int dnxhd_get_hr_frame_size(const CIDEntry* profile, int mb_num) static int dnxhd_get_hr_frame_size(const CIDEntry* profile, int mb_num)
{ {
int result = mb_num * profile->packet_scale.num / profile->packet_scale.den; int result = mb_num * profile->packet_scale.num / profile->packet_scale.den;
result = (result + 2048) / 4096 * 4096; result = (result + 2048) / 4096 * 4096;
return FFMAX(result, 8192); return FFMAX(result, 8192);
} }
static av_cold int dnxhd_encode_init(AVCodecContext *avctx) static av_cold int dnxhd_encode_init(AVCodecContext *avctx)