Increase debug level when packet is not for our stream, which is common when audio is present.

This commit is contained in:
Isaac Connor
2023-10-16 12:16:36 -04:00
parent c6d9c7731d
commit 6e8efe6332

View File

@@ -168,7 +168,7 @@ AVFrame *FFmpeg_Input::get_frame(int stream_id) {
av_packet_guard pkt_guard{packet};
if ((stream_id >= 0) && (packet->stream_index != stream_id)) {
Debug(1,"Packet is not for our stream (%d)", packet->stream_index );
Debug(4, "Packet is not for our stream (%d)", packet->stream_index );
continue;
}