diff options
Diffstat (limited to 'libavformat/ac3dec.c')
-rw-r--r-- | libavformat/ac3dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/ac3dec.c b/libavformat/ac3dec.c index 1f87939388..246c483671 100644 --- a/libavformat/ac3dec.c +++ b/libavformat/ac3dec.c @@ -103,7 +103,7 @@ static int ac3_probe(const AVProbeData *p) } FF_RAW_DEMUXER_CLASS(ac3) -AVInputFormat ff_ac3_demuxer = { +const AVInputFormat ff_ac3_demuxer = { .name = "ac3", .long_name = NULL_IF_CONFIG_SMALL("raw AC-3"), .read_probe = ac3_probe, @@ -124,7 +124,7 @@ static int eac3_probe(const AVProbeData *p) } FF_RAW_DEMUXER_CLASS(eac3) -AVInputFormat ff_eac3_demuxer = { +const AVInputFormat ff_eac3_demuxer = { .name = "eac3", .long_name = NULL_IF_CONFIG_SMALL("raw E-AC-3"), .read_probe = eac3_probe, |