From d8173f264f732a4d14220816de2e54642115e2a7 Mon Sep 17 00:00:00 2001 From: Matthieu Bouron Date: Mon, 22 Oct 2012 19:08:26 +0200 Subject: [PATCH] dv: fix a check on dv_extract_timecode return value Fixes CID733808 Signed-off-by: Michael Niedermayer --- libavformat/dv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/dv.c b/libavformat/dv.c index 01665c21b1..1d5ec2cf89 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -462,7 +462,7 @@ static int dv_read_timecode(AVFormatContext *s) { ret = dv_extract_timecode(c->dv_demux, partial_frame, timecode); if (ret) av_dict_set(&s->metadata, "timecode", timecode, 0); - else if (ret < 0) + else av_log(s, AV_LOG_ERROR, "Detected timecode is invalid\n"); finish: -- 2.11.0