1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

avformat/mux: Constify validate_codec_tag()

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-10-23 14:45:57 +02:00
parent 5da8b522c8
commit 9aa7397db1

View File

@ -144,7 +144,7 @@ error:
return ret;
}
static int validate_codec_tag(AVFormatContext *s, AVStream *st)
static int validate_codec_tag(const AVFormatContext *s, const AVStream *st)
{
const AVCodecTag *avctag;
enum AVCodecID id = AV_CODEC_ID_NONE;