[vlc-commits] [Git][videolan/vlc][master] 2 commits: test: input_decoder: fix stream::add prototype

Steve Lhomme (@robUx4) gitlab at videolan.org
Wed Aug 2 06:57:53 UTC 2023



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
2c4a5ccf by Alexandre Janniaux at 2023-08-02T06:40:58+00:00
test: input_decoder: fix stream::add prototype

Missing unchanged locations after es_id parameter addition in the commit
cfb7f7234e55d0c365f24ea62365f861bd5d79ab.

- - - - -
16167d91 by Alexandre Janniaux at 2023-08-02T06:40:58+00:00
test: transcode: fix stream::add prototype

Missing unchanged locations after es_id parameter addition in the commit
cfb7f7234e55d0c365f24ea62365f861bd5d79ab.

- - - - -


2 changed files:

- test/modules/stream_out/transcode.c
- test/src/input/decoder/input_decoder.c


Changes:

=====================================
test/modules/stream_out/transcode.c
=====================================
@@ -257,9 +257,10 @@ static int OutputCheckerSend(sout_stream_t *stream, void *id, vlc_frame_t *f)
     return VLC_SUCCESS;
 }
 
-static void *OutputCheckerAdd(sout_stream_t *stream, const es_format_t *fmt)
+static void *OutputCheckerAdd(sout_stream_t *stream, const es_format_t *fmt,
+                              const char *es_id)
 {
-    (void)stream; (void)fmt;
+    (void)stream; (void)fmt; (void)es_id;
     return (void*)0x42;
 }
 


=====================================
test/src/input/decoder/input_decoder.c
=====================================
@@ -176,9 +176,10 @@ static int OpenWindow(vlc_window_t *wnd)
     return VLC_SUCCESS;
 }
 
-static void *SoutFilterAdd(sout_stream_t *stream, const es_format_t *fmt)
+static void *SoutFilterAdd(sout_stream_t *stream, const es_format_t *fmt,
+                           const char *es_id)
 {
-    (void)stream; (void)fmt;
+    (void)stream; (void)fmt; (void)es_id;
     void *id = malloc(1);
     assert(id != NULL);
     return id;



View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/cd07011e23ac08fd7e9fe33901271b35ee2df2da...16167d914a0500db52a9b73b2018061d3f8ee19f

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/cd07011e23ac08fd7e9fe33901271b35ee2df2da...16167d914a0500db52a9b73b2018061d3f8ee19f
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