diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-08-20 09:56:26 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-21 04:18:23 -0700 |
commit | 11cd727fbd603197cb1e49654fce3352d56f8fd8 (patch) | |
tree | 1ae51edcecd565582e9985bf86a90100f57039e0 | |
parent | 67a7695c142561fe60f21adffe89c133385d37c9 (diff) | |
download | ffmpeg-11cd727fbd603197cb1e49654fce3352d56f8fd8.tar.gz |
vsrc_movie: Adjust a silly typo from b977b287f61fea48ecd6251d54a26334213b7ec6
-rw-r--r-- | libavfilter/vsrc_movie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vsrc_movie.c b/libavfilter/vsrc_movie.c index 1ee0f168f0..0e5df327d8 100644 --- a/libavfilter/vsrc_movie.c +++ b/libavfilter/vsrc_movie.c @@ -226,7 +226,7 @@ static int movie_get_frame(AVFilterLink *outlink) "movie_get_frame(): file:'%s' pts:%"PRId64" time:%f aspect:%d/%d\n", movie->file_name, movie->frame->pts, (double)movie->frame->pts * - av_q2d(movie->format_ctx->streams[movie->stream_index]), + av_q2d(movie->format_ctx->streams[movie->stream_index]->time_base), movie->frame->sample_aspect_ratio.num, movie->frame->sample_aspect_ratio.den); // We got it. Free the packet since we are returning |