Commit 509e832b authored by Jean-Paul Saman's avatar Jean-Paul Saman

mux/mpeg/ts.c: correct typo

Never do a last minute refactoring of common parts without a build test.
Fix a typo in dvbpsi_compat.h header and ts-muxer for the move to libdvbpsi >= 1.0.0.
parent 45483011
......@@ -64,7 +64,7 @@
/* NIT */
# define dvbpsi_DeleteNIT(table) dvbpsi_nit_delete((table))
static void dvbpsi_message(dvbpsi_t *p_dvbpsi, const dvbpsi_msg_level_t level, const char* msg)
static void dvbpsi_messages(dvbpsi_t *p_dvbpsi, const dvbpsi_msg_level_t level, const char* msg)
{
vlc_object_t *obj = (vlc_object_t *)p_dvbpsi->p_sys;
......
......@@ -523,7 +523,7 @@ static int Open( vlc_object_t *p_this )
p_mux->p_sys = p_sys;
#if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
p_sys->p_dvbpsi = dvbpsi_new( &dvbpsi_message, DVBPSI_MSG_DEBUG );
p_sys->p_dvbpsi = dvbpsi_new( &dvbpsi_messages, DVBPSI_MSG_DEBUG );
if( !p_sys->p_dvbpsi )
{
free( p_sys );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment