Browse Source

Added key_frame and pict_type to vsrc_movie

Signed-off-by: Roger Pau Monné <roger.pau@entel.upc.edu>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.8
royger Michael Niedermayer 14 years ago
parent
commit
77f6b4d58e
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavfilter/vsrc_movie.c

+ 2
- 0
libavfilter/vsrc_movie.c View File

@@ -252,6 +252,8 @@ static int movie_get_frame(AVFilterLink *outlink)
st->sample_aspect_ratio : movie->codec_ctx->sample_aspect_ratio;
movie->picref->video->interlaced = movie->frame->interlaced_frame;
movie->picref->video->top_field_first = movie->frame->top_field_first;
movie->picref->video->key_frame = movie->frame->key_frame;
movie->picref->video->pict_type = movie->frame->pict_type;
av_dlog(outlink->src,
"movie_get_frame(): file:'%s' pts:%"PRId64" time:%lf pos:%"PRId64" aspect:%d/%d\n",
movie->file_name, movie->picref->pts,


Loading…
Cancel
Save