[vlc-commits] [Git][videolan/vlc][master] sout: duplicate: remove trailing spaces
Steve Lhomme (@robUx4)
gitlab at videolan.org
Tue Sep 23 19:09:19 UTC 2025
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
c319ab06 by Marvin Scholz at 2025-09-23T18:51:45+00:00
sout: duplicate: remove trailing spaces
- - - - -
1 changed file:
- modules/stream_out/duplicate.c
Changes:
=====================================
modules/stream_out/duplicate.c
=====================================
@@ -105,7 +105,7 @@ static bool ESSelected( struct vlc_logger *, const es_format_t *fmt,
* duplicated stream and select the lowest to forward it to the sink.
*****************************************************************************/
-static void *PCRSelectorAdd( sout_stream_t *stream,
+static void *PCRSelectorAdd( sout_stream_t *stream,
const es_format_t *fmt,
const char *es_id )
{
@@ -161,7 +161,7 @@ static sout_stream_t *PCRSelectorNew( sout_stream_t *parent )
sout_StreamNew( VLC_OBJECT(parent), "duplicate-pcr-select{}" );
if( unlikely(selector == NULL) )
return NULL;
-
+
static const struct sout_stream_operations ops = {
.add = PCRSelectorAdd,
.del = PCRSelectorDel,
@@ -172,7 +172,7 @@ static sout_stream_t *PCRSelectorNew( sout_stream_t *parent )
};
selector->ops = &ops;
selector->p_sys = parent->p_sys;
-
+
return selector;
}
@@ -463,7 +463,7 @@ static int Send( sout_stream_t *p_stream, void *_id, vlc_frame_t *frame )
vlc_frame_Release( frame );
return VLC_ENOMEM;
}
-
+
sout_StreamIdSend( dup_id->stream_owner, dup_id->id, to_send );
}
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/c319ab06e4d3527b5a1b97273fea4dbf057de442
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/c319ab06e4d3527b5a1b97273fea4dbf057de442
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