avplay: use the correct array size for stride.

AV_NUM_DATA_POINTERS instead of 4.
This commit is contained in:
Anton Khirnov 2012-01-28 19:30:30 +01:00
parent 9bfe218299
commit 91b3bfba88
1 changed files with 1 additions and 1 deletions

View File

@ -1527,7 +1527,7 @@ static int input_get_buffer(AVCodecContext *codec, AVFrame *pic)
AVFilterContext *ctx = codec->opaque;
AVFilterBufferRef *ref;
int perms = AV_PERM_WRITE;
int i, w, h, stride[4];
int i, w, h, stride[AV_NUM_DATA_POINTERS];
unsigned edge;
int pixel_size;