diff options
author | Clément Bœsch <u@pkh.me> | 2015-09-10 21:40:07 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-09-10 21:40:07 +0200 |
commit | af924fd9e469064707fc00212456952b3e62ee5e (patch) | |
tree | 8c0fc8cd72d58a8a1de16d28d72fb2853462b9ca /libavformat/microdvddec.c | |
parent | a634649a36d8ed6a3fb29b4cdfb7023f7338c824 (diff) | |
download | ffmpeg-af924fd9e469064707fc00212456952b3e62ee5e.tar.gz |
avformat/subtitles: forward log context in ff_subtitles_queue_finalize() for logging
Diffstat (limited to 'libavformat/microdvddec.c')
-rw-r--r-- | libavformat/microdvddec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/microdvddec.c b/libavformat/microdvddec.c index a3839051a4..727ff947e7 100644 --- a/libavformat/microdvddec.c +++ b/libavformat/microdvddec.c @@ -141,7 +141,7 @@ static int microdvd_read_header(AVFormatContext *s) sub->pts = get_pts(line); sub->duration = get_duration(line); } - ff_subtitles_queue_finalize(µdvd->q); + ff_subtitles_queue_finalize(s, µdvd->q); if (has_real_fps) { /* export the FPS info only if set in the file */ microdvd->frame_rate = pts_info; |