diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-04-19 19:45:24 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-04-27 11:48:06 -0300 |
commit | bc70684e74a185d7b80c8b80bdedda659cb581b8 (patch) | |
tree | 2be0c484f566fa11c97e3b51b99353c8d2647ea5 /libavformat/bit.c | |
parent | d92f38c179591a608390ffa9fee59c309142e79d (diff) | |
download | ffmpeg-bc70684e74a185d7b80c8b80bdedda659cb581b8.tar.gz |
avformat: Constify all muxer/demuxers
This is possible now that the next-API is gone.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/bit.c')
-rw-r--r-- | libavformat/bit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/bit.c b/libavformat/bit.c index 2dc7d4f3f7..380cbd37cd 100644 --- a/libavformat/bit.c +++ b/libavformat/bit.c @@ -109,7 +109,7 @@ static int read_packet(AVFormatContext *s, return 0; } -AVInputFormat ff_bit_demuxer = { +const AVInputFormat ff_bit_demuxer = { .name = "bit", .long_name = NULL_IF_CONFIG_SMALL("G.729 BIT file format"), .read_probe = probe, @@ -155,7 +155,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt) return 0; } -AVOutputFormat ff_bit_muxer = { +const AVOutputFormat ff_bit_muxer = { .name = "bit", .long_name = NULL_IF_CONFIG_SMALL("G.729 BIT file format"), .mime_type = "audio/bit", |