1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/h2645_parse: replace three bool arguments in ff_h2645_packet_split with a single flags one

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer
2024-08-17 23:52:23 -03:00
parent 8060644237
commit a754ee0844
9 changed files with 45 additions and 28 deletions

View File

@ -193,7 +193,7 @@ static int extract_extradata_h2645(AVBSFContext *ctx, AVPacket *pkt,
}
ret = ff_h2645_packet_split(&s->h2645_pkt, pkt->data, pkt->size,
ctx, 0, 0, ctx->par_in->codec_id, 1, 0);
ctx, 0, ctx->par_in->codec_id, H2645_FLAG_SMALL_PADDING);
if (ret < 0)
return ret;