[vlc-commits] [Git][videolan/vlc][master] demux: ts: remove leftoff warning
Felix Paul Kühne (@fkuehne)
gitlab at videolan.org
Sat Apr 12 05:02:43 UTC 2025
Felix Paul Kühne pushed to branch master at VideoLAN / VLC
Commits:
ed6277fa by François Cartegnie at 2025-04-12T04:36:34+00:00
demux: ts: remove leftoff warning
- - - - -
1 changed file:
- modules/demux/mpeg/ts_psi.c
Changes:
=====================================
modules/demux/mpeg/ts_psi.c
=====================================
@@ -1849,9 +1849,8 @@ void SendCAPMTUpdate( demux_t *p_demux, const ts_pmt_t *p_pmt )
demux_sys_t *p_sys = p_demux->p_sys;
if( !p_pmt->p_ctx->p_capmt )
return;
- if( vlc_stream_Control( p_sys->stream, STREAM_SET_PRIVATE_ID_CA,
- (void *)p_pmt->p_ctx->p_capmt ) != VLC_SUCCESS )
- msg_Warn( p_demux, "Impos");
+ (void) vlc_stream_Control( p_sys->stream, STREAM_SET_PRIVATE_ID_CA,
+ (void *)p_pmt->p_ctx->p_capmt );
}
static void PMTCallBack( void *data, dvbpsi_pmt_t *p_dvbpsipmt )
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/ed6277fa0c914c5b45a285db2b1f63882118b099
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/ed6277fa0c914c5b45a285db2b1f63882118b099
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