From 987ff6ba124f00bc599b7f75af74419847dccfe9 Mon Sep 17 00:00:00 2001 From: jojo61 Date: Thu, 16 Dec 2021 11:37:23 +0100 Subject: [PATCH] Fix Radio Plugin Stillpicture --- softhddev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/softhddev.c b/softhddev.c index 0da2c05..f4528fb 100644 --- a/softhddev.c +++ b/softhddev.c @@ -2720,7 +2720,7 @@ void StillPicture(const uint8_t * data, int size) VideoNextPacket(MyVideoStream, MyVideoStream->CodecID); // terminate last packet } else { // ES packet - if (0 && MyVideoStream->CodecID != AV_CODEC_ID_MPEG2VIDEO) { + if (MyVideoStream->CodecID != AV_CODEC_ID_MPEG2VIDEO) { VideoNextPacket(MyVideoStream, AV_CODEC_ID_NONE); // close last stream MyVideoStream->CodecID = AV_CODEC_ID_MPEG2VIDEO; }