diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-16 14:49:12 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-20 06:57:30 +0200 |
commit | e0c01a62adf59d1866ec53dcd76e4d4c815c5d58 (patch) | |
tree | e7ad1bdde300013ce089be33171f9f09133316f5 /libavcodec/snowdec.c | |
parent | 1f63225f2b79032586f099fef73fc26e1670eeb7 (diff) | |
download | ffmpeg-e0c01a62adf59d1866ec53dcd76e4d4c815c5d58.tar.gz |
avcodec/(ffv1|h264|png|snow)dec: Remove comment out DRAW_HORIZ_BAND cap
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/snowdec.c')
-rw-r--r-- | libavcodec/snowdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/snowdec.c b/libavcodec/snowdec.c index 5c95ffde11..bed29d3390 100644 --- a/libavcodec/snowdec.c +++ b/libavcodec/snowdec.c @@ -662,6 +662,6 @@ const FFCodec ff_snow_decoder = { .init = ff_snow_common_init, .close = decode_end, FF_CODEC_DECODE_CB(decode_frame), - .p.capabilities = AV_CODEC_CAP_DR1 /*| AV_CODEC_CAP_DRAW_HORIZ_BAND*/, + .p.capabilities = AV_CODEC_CAP_DR1, .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, }; |