Commit 91b3bfba authored by Anton Khirnov's avatar Anton Khirnov

avplay: use the correct array size for stride.

AV_NUM_DATA_POINTERS instead of 4.
parent 9bfe2182
...@@ -1527,7 +1527,7 @@ static int input_get_buffer(AVCodecContext *codec, AVFrame *pic) ...@@ -1527,7 +1527,7 @@ static int input_get_buffer(AVCodecContext *codec, AVFrame *pic)
AVFilterContext *ctx = codec->opaque; AVFilterContext *ctx = codec->opaque;
AVFilterBufferRef *ref; AVFilterBufferRef *ref;
int perms = AV_PERM_WRITE; int perms = AV_PERM_WRITE;
int i, w, h, stride[4]; int i, w, h, stride[AV_NUM_DATA_POINTERS];
unsigned edge; unsigned edge;
int pixel_size; int pixel_size;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment