[FFmpeg-cvslog] Fixes ticket 1127.

Michael Bradshaw git at videolan.org
Thu Mar 29 05:37:49 CEST 2012


ffmpeg | branch: master | Michael Bradshaw <mbradshaw at sorensonmedia.com> | Wed Mar 28 10:22:49 2012 -0600| [b678dd9690662c8041df90f4d0873927abf31372] | committer: Michael Bradshaw

Fixes ticket 1127.
I'm still looking into why bpp is getting set to 0.

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

 libavcodec/libopenjpegdec.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/libopenjpegdec.c b/libavcodec/libopenjpegdec.c
index 2744713..744b4e2 100644
--- a/libavcodec/libopenjpegdec.c
+++ b/libavcodec/libopenjpegdec.c
@@ -266,7 +266,7 @@ static int libopenjpeg_decode_frame(AVCodecContext *avctx,
     avcodec_set_dimensions(avctx, width, height);
 
     switch (image->numcomps) {
-    case 1:  avctx->pix_fmt = (image->comps[0].bpp == 8) ? PIX_FMT_GRAY8 : PIX_FMT_GRAY16;
+    case 1:  avctx->pix_fmt = (image->comps[0].prec == 8) ? PIX_FMT_GRAY8 : PIX_FMT_GRAY16;
              break;
     case 2:  avctx->pix_fmt = PIX_FMT_GRAY8A;
              break;



More information about the ffmpeg-cvslog mailing list