You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/hevc_parser: fix packet_split function name
Fixes compilation of hevc_parser without hevc_decoder Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -89,7 +89,7 @@ static int parse_nal_units(AVCodecParserContext *s, const uint8_t *buf,
|
|||||||
HEVCParserContext *ctx = s->priv_data;
|
HEVCParserContext *ctx = s->priv_data;
|
||||||
int ret, i;
|
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);
|
AV_CODEC_ID_HEVC);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
Reference in New Issue
Block a user