diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:36:25 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:36:25 +0000 |
commit | af838d4c1e73e326d4a05d83b798e713639a7837 (patch) | |
tree | 6392cc09e489d551487cbb03de332f0551be59dc | |
parent | 998a7aa3dc81fb0c7b5a4b15624f04e7deaf3365 (diff) | |
download | ffmpeg-af838d4c1e73e326d4a05d83b798e713639a7837.tar.gz |
Add pts to frame references
Commited in SoC by Bobby Bingham on 2007-07-14 17:31:40
Originally committed as revision 11985 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/avfilter.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 18452e984d..2f43a9deae 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -70,6 +70,7 @@ void avfilter_default_start_frame(AVFilterLink *link, AVFilterPicRef *picref) if(out) { out->outpic = avfilter_get_video_buffer(out, AV_PERM_WRITE); + out->outpic->pts = picref->pts; avfilter_start_frame(out, avfilter_ref_pic(out->outpic, ~0)); } } |