From 449274dab406c3c3d7d4a2254d7012ee7118a6f5 Mon Sep 17 00:00:00 2001 From: emeric Date: Fri, 10 Oct 2014 23:14:25 +0200 Subject: [PATCH] Added TODO on avconv's deprecated max_analyze_duration --- src/av/InputFormatContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/av/InputFormatContext.cpp b/src/av/InputFormatContext.cpp index 315ba5f9..12c6e3b9 100644 --- a/src/av/InputFormatContext.cpp +++ b/src/av/InputFormatContext.cpp @@ -90,7 +90,7 @@ InputFormatContext::getBestStreamIdx(AVMediaType type, Stream::Idx& index) void InputFormatContext::findStreamInfo(void) { - native()->max_analyze_duration = 10 * AV_TIME_BASE; // 10 secs + native()->max_analyze_duration = 10 * AV_TIME_BASE; // 10 secs. TODO deprecated AvError err = avformat_find_stream_info(native(), NULL); if (err) { LMS_LOG(MOD_AV, SEV_ERROR) << "Couldn't find stream information: " << err;