From e7de2006e630c81a21ac54d868b90a10a8d65bf2 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 24 Mar 2022 19:04:48 +0100 Subject: Fix replay if no audio stream --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 35b6233..f87d90c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1357,7 +1357,7 @@ int main(int argc, char **argv) { for(size_t i = start_index; i < frame_data_queue.size(); ++i) { AVPacket *av_packet = frame_data_queue[i]; - if(av_packet->stream_index == audio_stream->index) { + if(av_packet->stream_index != video_stream->index) { av_packet->pts = AV_NOPTS_VALUE; av_packet->dts = AV_NOPTS_VALUE; } else { -- cgit v1.2.3