mirror of https://git.ffmpeg.org/ffmpeg.git
avdevice/decklink_dec: remove AVFMT_RAWPICTURE
It has no effect for input devices. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
418ce91507
commit
80b644c6ee
|
@ -77,7 +77,7 @@ static const AVClass decklink_demuxer_class = {
|
||||||
AVInputFormat ff_decklink_demuxer = {
|
AVInputFormat ff_decklink_demuxer = {
|
||||||
.name = "decklink",
|
.name = "decklink",
|
||||||
.long_name = NULL_IF_CONFIG_SMALL("Blackmagic DeckLink input"),
|
.long_name = NULL_IF_CONFIG_SMALL("Blackmagic DeckLink input"),
|
||||||
.flags = AVFMT_NOFILE | AVFMT_RAWPICTURE,
|
.flags = AVFMT_NOFILE,
|
||||||
.priv_class = &decklink_demuxer_class,
|
.priv_class = &decklink_demuxer_class,
|
||||||
.priv_data_size = sizeof(struct decklink_cctx),
|
.priv_data_size = sizeof(struct decklink_cctx),
|
||||||
.read_header = ff_decklink_read_header,
|
.read_header = ff_decklink_read_header,
|
||||||
|
|
Loading…
Reference in New Issue