mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-10 00:40:01 +01:00
avcodec/dnxhdenc: fix indentation issue
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
@@ -364,9 +364,9 @@ fail:
|
||||
|
||||
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;
|
||||
result = (result + 2048) / 4096 * 4096;
|
||||
return FFMAX(result, 8192);
|
||||
int result = mb_num * profile->packet_scale.num / profile->packet_scale.den;
|
||||
result = (result + 2048) / 4096 * 4096;
|
||||
return FFMAX(result, 8192);
|
||||
}
|
||||
|
||||
static av_cold int dnxhd_encode_init(AVCodecContext *avctx)
|
||||
|
||||
Reference in New Issue
Block a user