From ff953fecffd3b9a616a046723fb9d4690be032a6 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 11 Nov 2012 09:14:07 +0100 Subject: lavc: set frame properties in ff_get_buffer(). There is no point in duplicating this code in every get_buffer() implementation. --- cmdutils.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'cmdutils.c') diff --git a/cmdutils.c b/cmdutils.c index 6746be143f..42029d5fe2 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -1367,11 +1367,6 @@ int codec_get_buffer(AVCodecContext *s, AVFrame *frame) frame->opaque = buf; frame->type = FF_BUFFER_TYPE_USER; frame->extended_data = frame->data; - frame->pkt_pts = s->pkt ? s->pkt->pts : AV_NOPTS_VALUE; - frame->width = buf->w; - frame->height = buf->h; - frame->format = buf->pix_fmt; - frame->sample_aspect_ratio = s->sample_aspect_ratio; for (i = 0; i < FF_ARRAY_ELEMS(buf->data); i++) { frame->base[i] = buf->base[i]; // XXX h264.c uses base though it shouldn't -- cgit v1.2.3