diff options
author | wm4 <nfxjfg@googlemail.com> | 2015-09-22 17:40:06 +0200 |
---|---|---|
committer | wm4 <nfxjfg@googlemail.com> | 2015-09-22 17:41:01 +0200 |
commit | e859a3c864d57afaed46b99c3eb744b62ab36de4 (patch) | |
tree | 4c8ca58bb945ec26b1879c29fea660b70fd64e48 /libavcodec/dvdsubdec.c | |
parent | 9aab22223908180cbfc3c5fa1b19b58d806b5097 (diff) | |
download | ffmpeg-e859a3c864d57afaed46b99c3eb744b62ab36de4.tar.gz |
avcodec/dvdsubdec: don't use a NULL log context
Diffstat (limited to 'libavcodec/dvdsubdec.c')
-rw-r--r-- | libavcodec/dvdsubdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvdsubdec.c b/libavcodec/dvdsubdec.c index b7285a428a..6f3fda3a29 100644 --- a/libavcodec/dvdsubdec.c +++ b/libavcodec/dvdsubdec.c @@ -406,7 +406,7 @@ static int decode_dvd_subtitles(DVDSubContext *ctx, AVSubtitle *sub_header, } } if (next_cmd_pos < cmd_pos) { - av_log(NULL, AV_LOG_ERROR, "Invalid command offset\n"); + av_log(ctx, AV_LOG_ERROR, "Invalid command offset\n"); break; } if (next_cmd_pos == cmd_pos) |