summaryrefslogtreecommitdiff
path: root/libavcodec/cbs_jpeg.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-04 13:58:36 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-08 06:02:05 +0100
commit66d7a211329e79ad61316f67726e89d07c21d862 (patch)
tree11443906bf254d945d2955aec26bcf3040dfd1af /libavcodec/cbs_jpeg.c
parentf183ae787a73f263706212dde151c1edddd6fb1c (diff)
downloadffmpeg-66d7a211329e79ad61316f67726e89d07c21d862.tar.gz
avcodec/cbs: Make ff_cbs_insert_unit_data() always append the new unit
All split functions (the only users of this function) only append units. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/cbs_jpeg.c')
-rw-r--r--libavcodec/cbs_jpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cbs_jpeg.c b/libavcodec/cbs_jpeg.c
index ae263ba038..da7ee808cf 100644
--- a/libavcodec/cbs_jpeg.c
+++ b/libavcodec/cbs_jpeg.c
@@ -226,7 +226,7 @@ static int cbs_jpeg_split_fragment(CodedBitstreamContext *ctx,
data_ref = frag->data_ref;
}
- err = ff_cbs_insert_unit_data(frag, -1, marker,
+ err = ff_cbs_append_unit_data(frag, marker,
data, data_size, data_ref);
if (err < 0)
return err;