[vlc-commits] Mpeg mux: fix compilation
Jean-Baptiste Kempf
git at videolan.org
Thu Feb 19 14:49:03 CET 2015
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Feb 19 14:48:48 2015 +0100| [e619f1efa431d6757002155eb298b2fa8ce071cf] | committer: Jean-Baptiste Kempf
Mpeg mux: fix compilation
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e619f1efa431d6757002155eb298b2fa8ce071cf
---
modules/mux/mpeg/tables.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/mux/mpeg/tables.c b/modules/mux/mpeg/tables.c
index 82821c1..01a7c68 100644
--- a/modules/mux/mpeg/tables.c
+++ b/modules/mux/mpeg/tables.c
@@ -94,7 +94,7 @@ void BuildPAT( DVBPSI_HANDLE_PARAM(dvbpsi_t *p_dvbpsi)
#if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
p_section = dvbpsi_pat_sections_generate( p_dvbpsi, &patpsi, 0 );
#else
- p_section = dvbpsi_GenPATSections( &pat, 0 /* max program per section */ );
+ p_section = dvbpsi_GenPATSections( &patpsi, 0 /* max program per section */ );
#endif
block_t *p_block = WritePSISection( p_section );
More information about the vlc-commits
mailing list