summaryrefslogtreecommitdiffstats
path: root/libavcodec/libutvideodec.cpp
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-06-11 22:38:41 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-06-11 22:38:41 +0200
commit3da860fbcfdecd4bb8b54dd9b4b252d867de7970 (patch)
tree3444da05e799ef91839c3ddde84fbdda9a875ff8 /libavcodec/libutvideodec.cpp
parent3ecc59bc35412d0cc2299668dd1f79fff090eb3f (diff)
downloadffmpeg-streaming-3da860fbcfdecd4bb8b54dd9b4b252d867de7970.zip
ffmpeg-streaming-3da860fbcfdecd4bb8b54dd9b4b252d867de7970.tar.gz
lavc/libutvideodec: Do not set bits_per_raw_sample.
It is not always 8 but never different from the pix_fmt property.
Diffstat (limited to 'libavcodec/libutvideodec.cpp')
-rw-r--r--libavcodec/libutvideodec.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/libutvideodec.cpp b/libavcodec/libutvideodec.cpp
index a456735..29e6db1 100644
--- a/libavcodec/libutvideodec.cpp
+++ b/libavcodec/libutvideodec.cpp
@@ -109,9 +109,6 @@ static av_cold int utvideo_decode_init(AVCodecContext *avctx)
/* Allocate the output frame */
avctx->coded_frame = av_frame_alloc();
- /* Ut Video only supports 8-bit */
- avctx->bits_per_raw_sample = 8;
-
/* Is it interlaced? */
avctx->coded_frame->interlaced_frame = info.flags & 0x800 ? 1 : 0;
OpenPOWER on IntegriCloud