diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-16 18:33:17 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-16 18:33:17 +0100 |
commit | 2fd39642c9aa34bae7e08fbdcba15ef1ae6f3b2e (patch) | |
tree | c8becb08ddbb415b00fb06c8ee9af78e109f652e | |
parent | 3d87927959bac2763087d193de1568c149a9405a (diff) | |
download | ffmpeg-streaming-2fd39642c9aa34bae7e08fbdcba15ef1ae6f3b2e.zip ffmpeg-streaming-2fd39642c9aa34bae7e08fbdcba15ef1ae6f3b2e.tar.gz |
avcodec/huffyuv: fix median prediction for >8bps
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/huffyuvdec.c | 30 | ||||
-rw-r--r-- | libavcodec/huffyuvenc.c | 29 |
2 files changed, 56 insertions, 3 deletions
diff --git a/libavcodec/huffyuvdec.c b/libavcodec/huffyuvdec.c index c1e029d..ced22f6 100644 --- a/libavcodec/huffyuvdec.c +++ b/libavcodec/huffyuvdec.c @@ -725,6 +725,32 @@ static void add_bytes(HYuvContext *s, uint8_t *dst, uint8_t *src, int w) } } +static void add_median_prediction(HYuvContext *s, uint8_t *dst, const uint8_t *src, const uint8_t *diff, int w, int *left, int *left_top) +{ + if (s->bps <= 8) { + s->dsp.add_hfyu_median_prediction(dst, src, diff, w, left, left_top); + } else { + //FIXME optimize + unsigned mask = s->n-1; + int i; + uint16_t l, lt; + const uint16_t *src16 = (const uint16_t *)src; + const uint16_t *diff16 = (const uint16_t *)diff; + uint16_t *dst16 = ( uint16_t *)dst; + + l = *left; + lt = *left_top; + + for(i=0; i<w; i++){ + l = (mid_pred(l, src16[i], (l + src16[i] - lt) & mask) + diff16[i]) & mask; + lt = src16[i]; + dst16[i] = l; + } + + *left = l; + *left_top = lt; + } +} static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) { @@ -817,7 +843,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, lefttop = p->data[plane][0]; decode_plane_bitstream(s, w, plane); - s->dsp.add_hfyu_median_prediction(p->data[plane] + fake_stride, p->data[plane], s->temp[0], w, &left, &lefttop); + add_median_prediction(s, p->data[plane] + fake_stride, p->data[plane], s->temp[0], w, &left, &lefttop); y++; for (; y<h; y++) { @@ -827,7 +853,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, dst = p->data[plane] + p->linesize[plane] * y; - s->dsp.add_hfyu_median_prediction(dst, dst - fake_stride, s->temp[0], w, &left, &lefttop); + add_median_prediction(s, dst, dst - fake_stride, s->temp[0], w, &left, &lefttop); } break; diff --git a/libavcodec/huffyuvenc.c b/libavcodec/huffyuvenc.c index 5a690c1..5fb7d0c 100644 --- a/libavcodec/huffyuvenc.c +++ b/libavcodec/huffyuvenc.c @@ -153,6 +153,33 @@ static inline void sub_left_prediction_rgb24(HYuvContext *s, uint8_t *dst, *blue = src[(w - 1) * 3 + 2]; } +static void sub_median_prediction(HYuvContext *s, uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int w, int *left, int *left_top) +{ + if (s->bps <= 8) { + s->dsp.sub_hfyu_median_prediction(dst, src1, src2, w , left, left_top); + } else { + int i; + uint16_t l, lt; + const uint16_t *src116 = (const uint16_t *)src1; + const uint16_t *src216 = (const uint16_t *)src2; + uint16_t *dst16 = ( uint16_t *)dst; + unsigned mask = s->n - 1; + + l = *left; + lt = *left_top; + + for(i=0; i<w; i++){ + const int pred = mid_pred(l, src116[i], (l + src116[i] - lt) & mask); + lt = src116[i]; + l = src216[i]; + dst16[i] = (l - pred) & mask; + } + + *left = l; + *left_top = lt; + } +} + static int store_table(HYuvContext *s, const uint8_t *len, uint8_t *buf) { int i; @@ -857,7 +884,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, for (; y < h; y++) { uint8_t *dst = p->data[plane] + p->linesize[plane] * y; - s->dsp.sub_hfyu_median_prediction(s->temp[0], dst - fake_stride, dst, w , &left, &lefttop); + sub_median_prediction(s, s->temp[0], dst - fake_stride, dst, w , &left, &lefttop); encode_plane_bitstream(s, w, plane); } |