[vlc-commits] [Git][videolan/vlc][master] sout: transcode: forward forgotten ES string ID

Steve Lhomme (@robUx4) gitlab at videolan.org
Wed Aug 2 13:39:41 UTC 2023



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
fa67b748 by Alaric Senat at 2023-08-02T13:19:54+00:00
sout: transcode: forward forgotten ES string ID

This forwarding was accidentally dropped in some commit workflow
reworking. ES string ID shouldn't be NULL.

- - - - -


1 changed file:

- modules/stream_out/transcode/transcode.c


Changes:

=====================================
modules/stream_out/transcode/transcode.c
=====================================
@@ -676,7 +676,7 @@ Add( sout_stream_t *p_stream, const es_format_t *p_fmt, const char *es_id )
     {
         msg_Dbg( p_stream, "not transcoding a stream (fcc=`%4.4s')",
                  (char*)&p_fmt->i_codec );
-        id->downstream_id = transcode_downstream_Add( p_stream, p_fmt, p_fmt, NULL );
+        id->downstream_id = transcode_downstream_Add( p_stream, p_fmt, p_fmt, es_id );
         id->b_transcode = false;
 
         success = id->downstream_id;



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/fa67b748170979aebdb838ad6048e7845ba4e347

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/fa67b748170979aebdb838ad6048e7845ba4e347
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list