[FFmpeg-cvslog] avcodec/cljr: support width%4 encoding

Michael Niedermayer git at videolan.org
Sun Jun 1 01:35:20 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat May 31 23:52:50 2014 +0200| [6dc709f0f5c5e019ac9a1ea51bb06c04edc1e208] | committer: Michael Niedermayer

avcodec/cljr: support width%4 encoding

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavcodec/cljr.c |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c
index 9b2bf60..8d1d1a0 100644
--- a/libavcodec/cljr.c
+++ b/libavcodec/cljr.c
@@ -124,12 +124,18 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
         uint8_t *luma = &p->data[0][y * p->linesize[0]];
         uint8_t *cb   = &p->data[1][y * p->linesize[1]];
         uint8_t *cr   = &p->data[2][y * p->linesize[2]];
+        uint8_t luma_tmp[4];
         for (x = 0; x < avctx->width; x += 4) {
             switch (a->dither_type) {
             case 0: dither = 0x492A0000;                       break;
             case 1: dither = dither * 1664525 + 1013904223;    break;
             case 2: dither = ordered_dither[ y&1 ][ (x>>2)&1 ];break;
             }
+            if (x+3 >= avctx->width) {
+                memset(luma_tmp, 0, sizeof(luma_tmp));
+                memcpy(luma_tmp, luma, avctx->width - x);
+                luma = luma_tmp;
+            }
             put_bits(&pb, 5, (249*(luma[3] +  (dither>>29)   )) >> 11);
             put_bits(&pb, 5, (249*(luma[2] + ((dither>>26)&7))) >> 11);
             put_bits(&pb, 5, (249*(luma[1] + ((dither>>23)&7))) >> 11);



More information about the ffmpeg-cvslog mailing list