diff options
author | Andreas Rheinhardt <andreas.rheinhardt@googlemail.com> | 2018-11-28 01:24:09 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2019-01-23 22:33:43 +0000 |
commit | 992532ee3122d7938a7581988eea401b57de8189 (patch) | |
tree | 2f7386fde20a32210a00fbdcf96f88caa5a9e6e1 /libavcodec/h264_parse.c | |
parent | cf81284b1c14ef28d3f94e6d28c46188ba4e82f2 (diff) | |
download | ffmpeg-992532ee3122d7938a7581988eea401b57de8189.tar.gz |
h2645_parse: Make ff_h2645_packet_split reference-compatible
This is in preparation for a patch for cbs_h2645. Now the packet's
rbsp_buffer can be owned by an AVBuffer.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@googlemail.com>
Diffstat (limited to 'libavcodec/h264_parse.c')
-rw-r--r-- | libavcodec/h264_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_parse.c b/libavcodec/h264_parse.c index 34ffe3b1fe..290ab681a9 100644 --- a/libavcodec/h264_parse.c +++ b/libavcodec/h264_parse.c @@ -359,7 +359,7 @@ static int decode_extradata_ps(const uint8_t *data, int size, H264ParamSets *ps, H2645Packet pkt = { 0 }; int i, ret = 0; - ret = ff_h2645_packet_split(&pkt, data, size, logctx, is_avc, 2, AV_CODEC_ID_H264, 1); + ret = ff_h2645_packet_split(&pkt, data, size, logctx, is_avc, 2, AV_CODEC_ID_H264, 1, 0); if (ret < 0) { ret = 0; goto fail; |