avformat/mux: Constify validate_codec_tag()

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
pull/388/head
Andreas Rheinhardt 2 years ago
parent 5da8b522c8
commit 9aa7397db1
  1. 2
      libavformat/mux.c

@ -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;

Loading…
Cancel
Save