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/hashenc.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/hashenc.c')
-rw-r--r-- | libavformat/hashenc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/hashenc.c b/libavformat/hashenc.c index ec4e44ef12..a1e98eda89 100644 --- a/libavformat/hashenc.c +++ b/libavformat/hashenc.c @@ -171,7 +171,7 @@ static const AVClass hashenc_class = { .version = LIBAVUTIL_VERSION_INT, }; -AVOutputFormat ff_hash_muxer = { +const AVOutputFormat ff_hash_muxer = { .name = "hash", .long_name = NULL_IF_CONFIG_SMALL("Hash testing"), .priv_data_size = sizeof(struct HashContext), @@ -195,7 +195,7 @@ static const AVClass md5enc_class = { .version = LIBAVUTIL_VERSION_INT, }; -AVOutputFormat ff_md5_muxer = { +const AVOutputFormat ff_md5_muxer = { .name = "md5", .long_name = NULL_IF_CONFIG_SMALL("MD5 testing"), .priv_data_size = sizeof(struct HashContext), @@ -219,7 +219,7 @@ static const AVClass streamhashenc_class = { .version = LIBAVUTIL_VERSION_INT, }; -AVOutputFormat ff_streamhash_muxer = { +const AVOutputFormat ff_streamhash_muxer = { .name = "streamhash", .long_name = NULL_IF_CONFIG_SMALL("Per-stream hash testing"), .priv_data_size = sizeof(struct HashContext), @@ -330,7 +330,7 @@ static const AVClass framehash_class = { .version = LIBAVUTIL_VERSION_INT, }; -AVOutputFormat ff_framehash_muxer = { +const AVOutputFormat ff_framehash_muxer = { .name = "framehash", .long_name = NULL_IF_CONFIG_SMALL("Per-frame hash testing"), .priv_data_size = sizeof(struct HashContext), @@ -354,7 +354,7 @@ static const AVClass framemd5_class = { .version = LIBAVUTIL_VERSION_INT, }; -AVOutputFormat ff_framemd5_muxer = { +const AVOutputFormat ff_framemd5_muxer = { .name = "framemd5", .long_name = NULL_IF_CONFIG_SMALL("Per-frame MD5 testing"), .priv_data_size = sizeof(struct HashContext), |