From 15f33e532bed18596bcb0e5df96b15bd77cebfa4 Mon Sep 17 00:00:00 2001 From: Seven Du Date: Mon, 24 Oct 2016 08:10:36 +0800 Subject: [PATCH] FS-9151 FS-9631 #resolve --- src/mod/applications/mod_av/avformat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/applications/mod_av/avformat.c b/src/mod/applications/mod_av/avformat.c index 04d35096e1..a1fc0069b7 100644 --- a/src/mod/applications/mod_av/avformat.c +++ b/src/mod/applications/mod_av/avformat.c @@ -1479,7 +1479,7 @@ static void *SWITCH_THREAD_FUNC file_read_thread_run(switch_thread_t *thread, vo pkt.data = NULL; pkt.size = 0; - if (context->video_st.st && (error = av_read_frame(context->fc, &pkt)) < 0) { + if ((error = av_read_frame(context->fc, &pkt)) < 0) { if (error == AVERROR_EOF) { if (!context->has_video) break;