From 30806ddcbc6d9057342e34f1e06cda4d47bad194 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 1 Mar 2013 22:25:09 +0100 Subject: avcodec/rawdec: use AVFrame accessor functions Signed-off-by: Michael Niedermayer --- libavcodec/rawdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/rawdec.c') diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index a8b70ee..f7143d7 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -183,8 +183,8 @@ static int raw_decode(AVCodecContext *avctx, void *data, int *got_frame, frame->top_field_first = avctx->coded_frame->top_field_first; frame->reordered_opaque = avctx->reordered_opaque; frame->pkt_pts = avctx->pkt->pts; - frame->pkt_pos = avctx->pkt->pos; - frame->pkt_duration = avctx->pkt->duration; + av_frame_set_pkt_pos (frame, avctx->pkt->pos); + av_frame_set_pkt_duration(frame, avctx->pkt->duration); if (context->tff >= 0) { frame->interlaced_frame = 1; -- cgit v1.1