[vlc-commits] [Git][videolan/vlc][master] mpeg: ps: remove unused es_out_t parameter
Rémi Denis-Courmont (@Courmisch)
gitlab at videolan.org
Sat Jun 18 19:03:26 UTC 2022
Rémi Denis-Courmont pushed to branch master at VideoLAN / VLC
Commits:
245b5ca7 by Alexandre Janniaux at 2022-06-18T18:52:01+00:00
mpeg: ps: remove unused es_out_t parameter
Unused after 8036a0f6f4c93c2a9fb981dec5734bb554e8a0bc.
- - - - -
2 changed files:
- modules/demux/mpeg/ps.c
- modules/demux/mpeg/ps.h
Changes:
=====================================
modules/demux/mpeg/ps.c
=====================================
@@ -513,7 +513,7 @@ static int Demux( demux_t *p_demux )
ps_psm_fill( &p_sys->psm,
p_pkt->p_buffer, p_pkt->i_buffer,
- p_sys->tk, p_demux->out );
+ p_sys->tk );
block_Release( p_pkt );
break;
=====================================
modules/demux/mpeg/ps.h
=====================================
@@ -630,7 +630,7 @@ static inline void ps_parse_descriptors( const uint8_t *p_data, size_t i_data,
static inline int ps_psm_fill( ps_psm_t *p_psm,
const uint8_t *p_buffer, size_t i_pkt,
- ps_track_t tk[PS_TK_COUNT], es_out_t *out )
+ ps_track_t tk[PS_TK_COUNT])
{
size_t i_length, i_info_length, i_es_base;
uint8_t i_version;
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/245b5ca72c103ef42ecec7653d45c4e7fba23fd8
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/245b5ca72c103ef42ecec7653d45c4e7fba23fd8
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