[vlc-commits] [Git][videolan/vlc][master] transcode: forward the `IS_SYNCHRONOUS` control

Steve Lhomme (@robUx4) gitlab at videolan.org
Fri Jun 23 18:18:21 UTC 2023



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
67e03b4b by Soham Gupta at 2023-06-23T16:08:14+00:00
transcode: forward the `IS_SYNCHRONOUS` control

Fixes transcode with paced stream outputs (UDP, HLS and display)
Fixes #25959

- - - - -


1 changed file:

- modules/stream_out/transcode/transcode.c


Changes:

=====================================
modules/stream_out/transcode/transcode.c
=====================================
@@ -370,6 +370,10 @@ static int Control( sout_stream_t *p_stream, int i_query, va_list args )
                                            id->downstream_id, spu_hl );
             break;
         }
+	case SOUT_STREAM_IS_SYNCHRONOUS:
+        {
+            return sout_StreamControl(p_stream->p_next, i_query, va_arg(args, bool *));
+        }
     }
     return VLC_EGENERIC;
 }



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

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/67e03b4ba2165e1823ff0f25631d5887bdd61971
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