[FFmpeg-cvslog] ffv1: Assume bitdepth 0 means 8bit

Luca Barbato git at videolan.org
Wed Oct 16 14:39:23 CEST 2013


ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Sun Oct 13 15:34:47 2013 +0200| [a90905db2e6ab1840890f3a88bfd3bf008b9d886] | committer: Luca Barbato

ffv1: Assume bitdepth 0 means 8bit

CC: libav-stable at libav.org
Reported-by: debian/726189

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a90905db2e6ab1840890f3a88bfd3bf008b9d886
---

 libavcodec/ffv1dec.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/ffv1dec.c b/libavcodec/ffv1dec.c
index 584755d..f0a409f 100644
--- a/libavcodec/ffv1dec.c
+++ b/libavcodec/ffv1dec.c
@@ -669,6 +669,7 @@ static int read_header(FFV1Context *f)
             return AVERROR(ENOSYS);
         }
         switch (f->avctx->bits_per_raw_sample) {
+        case 0:
         case 8:
             f->avctx->pix_fmt = AV_PIX_FMT_RGB32;
             break;



More information about the ffmpeg-cvslog mailing list