diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-04-19 18:56:01 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-04-27 11:48:05 -0300 |
commit | d92f38c179591a608390ffa9fee59c309142e79d (patch) | |
tree | 5a19f61c32bc9010b0ed319a8ef625aa41f87ba9 /libavdevice/decklink_enc_c.c | |
parent | a04ad248a05e7b613abe09b3bb067f555108d794 (diff) | |
download | ffmpeg-d92f38c179591a608390ffa9fee59c309142e79d.tar.gz |
avdevice: Constify all devices
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 'libavdevice/decklink_enc_c.c')
-rw-r--r-- | libavdevice/decklink_enc_c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/decklink_enc_c.c b/libavdevice/decklink_enc_c.c index f09659909f..828cf5db65 100644 --- a/libavdevice/decklink_enc_c.c +++ b/libavdevice/decklink_enc_c.c @@ -48,7 +48,7 @@ static const AVClass decklink_muxer_class = { .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT, }; -AVOutputFormat ff_decklink_muxer = { +const AVOutputFormat ff_decklink_muxer = { .name = "decklink", .long_name = NULL_IF_CONFIG_SMALL("Blackmagic DeckLink output"), .audio_codec = AV_CODEC_ID_PCM_S16LE, |