]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/v210.c
avformat: Constify all muxer/demuxers
[ffmpeg] / libavformat / v210.c
index a90bd367c120f56b8e3f1359fdde71e81596e83b..361fd2a625a6b121d20e67a4ec627d43f8ece025 100644 (file)
@@ -95,7 +95,7 @@ static const AVClass v210_demuxer_class = {
     .version    = LIBAVUTIL_VERSION_INT,
 };
 
-AVInputFormat ff_v210_demuxer = {
+const AVInputFormat ff_v210_demuxer = {
     .name           = "v210",
     .long_name      = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
     .priv_data_size = sizeof(V210DemuxerContext),
@@ -116,7 +116,7 @@ static const AVClass v210x_demuxer_class = {
     .version    = LIBAVUTIL_VERSION_INT,
 };
 
-AVInputFormat ff_v210x_demuxer = {
+const AVInputFormat ff_v210x_demuxer = {
     .name           = "v210x",
     .long_name      = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
     .priv_data_size = sizeof(V210DemuxerContext),