summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorgcocherel <gildas.cocherel@laposte.net>2013-11-21 11:16:53 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-11-21 22:51:51 +0100
commit0afa254d4efd3c06fd0194789aefc193c8506947 (patch)
tree6b7afdd8afb1405c096032e616186e81014bdc66 /libavcodec
parent6a7980e2cd4ba094756215df9172aad87cb1c469 (diff)
hevc : fix pcm(cherry picked from commit 12bbfdba1899d11044d2bd8457159fc8b4b52a76)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/hevc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index eb3cb75017..9e6c24c736 100644
--- a/libavcodec/hevc.c
+++ b/libavcodec/hevc.c
@@ -971,7 +971,7 @@ static int hls_pcm_sample(HEVCContext *s, int x0, int y0, int log2_cb_size)
int stride2 = s->frame->linesize[2];
uint8_t *dst2 = &s->frame->data[2][(y0 >> s->sps->vshift[2]) * stride2 + ((x0 >> s->sps->hshift[2]) << s->sps->pixel_shift)];
- int length = cb_size * cb_size * s->sps->pcm.bit_depth + ((cb_size * cb_size) >> 1) * s->sps->pcm.bit_depth;
+ int length = cb_size * cb_size * s->sps->pcm.bit_depth + ((cb_size * cb_size) >> 1) * s->sps->pcm.bit_depth_chroma;
const uint8_t *pcm = skip_bytes(&s->HEVClc->cc, (length + 7) >> 3);
int ret;