cmdutils/alloc_buffer: fix typo

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
chinshou 2012-07-20 16:42:29 +02:00 committed by Michael Niedermayer
parent 99c4e91dfa
commit 55de89e25d
1 changed files with 1 additions and 1 deletions

View File

@ -1227,7 +1227,7 @@ static int alloc_buffer(FrameBuffer **pool, AVCodecContext *s, FrameBuffer **pbu
for (i = 0; i < FF_ARRAY_ELEMS(buf->data); i++) {
const int h_shift = i==0 ? 0 : h_chroma_shift;
const int v_shift = i==0 ? 0 : v_chroma_shift;
if ((s->flags & CODEC_FLAG_EMU_EDGE) || !buf->linesize[1] || !buf->base[i])
if ((s->flags & CODEC_FLAG_EMU_EDGE) || !buf->linesize[i] || !buf->base[i])
buf->data[i] = buf->base[i];
else
buf->data[i] = buf->base[i] +