This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit cda069b0925e6182d81ae7ea461689835bbcd392
Author:     Alexander Slobodeniuk <[email protected]>
AuthorDate: Thu Apr 16 19:52:12 2026 +0200
Commit:     Marton Balint <[email protected]>
CommitDate: Sun May 3 20:10:26 2026 +0000

    avformat/mpegts: don't check impossible branches
    
    Quit dvb extension handling when the descriptor
    have been processed
---
 libavformat/mpegts.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index e9945a0081..42f528822e 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -2280,6 +2280,7 @@ int ff_parse_mpeg2_descriptor(AVFormatContext *fc, 
AVStream *st, int stream_type
                 sti->need_parsing = AVSTREAM_PARSE_FULL;
                 sti->need_context_update = 1;
             }
+            break;
         }
         if (ext_desc_tag == SUPPLEMENTARY_AUDIO_DESCRIPTOR) {
             int flags;
@@ -2317,6 +2318,7 @@ int ff_parse_mpeg2_descriptor(AVFormatContext *fc, 
AVStream *st, int stream_type
                 if (language[0])
                     av_dict_set(&st->metadata, "language", language, 0);
             }
+            break;
         }
         break;
     case AC3_DESCRIPTOR:

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to