mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-17 20:40:07 +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)
|
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)
|
||||||
|
|||||||
Reference in New Issue
Block a user