Commit fc1c836d authored by James Almer's avatar James Almer

avcodec/hevc_parser: fix packet_split function name

Fixes compilation of hevc_parser without hevc_decoder
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 03e8c1b8
......@@ -89,7 +89,7 @@ static int parse_nal_units(AVCodecParserContext *s, const uint8_t *buf,
HEVCParserContext *ctx = s->priv_data;
int ret, i;
ret = ff_h2645_split_packet(&ctx->pkt, buf, buf_size, avctx, 0, 0,
ret = ff_h2645_packet_split(&ctx->pkt, buf, buf_size, avctx, 0, 0,
AV_CODEC_ID_HEVC);
if (ret < 0)
return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment