Browse Source

test: input_decoder: fix stream::add prototype

Missing unchanged locations after es_id parameter addition in the commit
cfb7f7234e.
pull/162/head
Alexandre Janniaux 3 years ago
committed by Steve Lhomme
parent
commit
2c4a5ccf41
  1. 5
      test/src/input/decoder/input_decoder.c

5
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;

Loading…
Cancel
Save