mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-12-02 16:27:25 +00:00
avcodec/dnxhdenc: fix indentation issue
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
f078bc4c5e
commit
358d4524cc
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user