diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-30 23:42:44 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-04-05 20:02:47 +0200 |
commit | 6ed0d95fa207f587b3542f3e8349932118ad8d5d (patch) | |
tree | 0efdc364f0fdc5ab9e517219bc1053db3e8e2e73 /libavcodec/microdvddec.c | |
parent | 4243da4ff42e306b3622b181e12f5cd127d21414 (diff) | |
download | ffmpeg-6ed0d95fa207f587b3542f3e8349932118ad8d5d.tar.gz |
avcodec/codec_internal: Constify AVPacket in decode_sub cb
No subtitle decoder ever modifies the AVPacket given to it.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/microdvddec.c')
-rw-r--r-- | libavcodec/microdvddec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/microdvddec.c b/libavcodec/microdvddec.c index 154fd3271b..f36ad51468 100644 --- a/libavcodec/microdvddec.c +++ b/libavcodec/microdvddec.c @@ -275,7 +275,7 @@ static void microdvd_close_no_persistent_tags(AVBPrint *new_line, } static int microdvd_decode_frame(AVCodecContext *avctx, AVSubtitle *sub, - int *got_sub_ptr, AVPacket *avpkt) + int *got_sub_ptr, const AVPacket *avpkt) { AVBPrint new_line; char *line = avpkt->data; |