From 6943fb47d3bd0bd46734cdd762ab2c4ee89b0a22 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sun, 15 Apr 2012 23:08:45 -0700 Subject: avplay: update get_buffer to be inline with avconv The buffer must have its dimension, pixel format and aspect ratio set. --- avplay.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'avplay.c') diff --git a/avplay.c b/avplay.c index a11f952402..e9388fd4b8 100644 --- a/avplay.c +++ b/avplay.c @@ -1564,6 +1564,10 @@ static int input_get_buffer(AVCodecContext *codec, AVFrame *pic) pic->opaque = ref; pic->type = FF_BUFFER_TYPE_USER; pic->reordered_opaque = codec->reordered_opaque; + pic->width = codec->width; + pic->height = codec->height; + pic->format = codec->pix_fmt; + pic->sample_aspect_ratio = codec->sample_aspect_ratio; if (codec->pkt) pic->pkt_pts = codec->pkt->pts; else pic->pkt_pts = AV_NOPTS_VALUE; return 0; -- cgit v1.2.3