Commit 19738f6a authored by Clément Stenac's avatar Clément Stenac

Forgot that for Qt

parent 47315c39
...@@ -4636,6 +4636,7 @@ AC_ARG_ENABLE(qt4, ...@@ -4636,6 +4636,7 @@ AC_ARG_ENABLE(qt4,
VLC_ADD_LDFLAGS([qt4],[$QT4_LIBS]) VLC_ADD_LDFLAGS([qt4],[$QT4_LIBS])
VLC_ADD_CXXFLAGS([qt4],[$QT4_CFLAGS]) VLC_ADD_CXXFLAGS([qt4],[$QT4_CFLAGS])
MOC=`$PKG_CONFIG --variable=exec_prefix QtCore`/bin/moc MOC=`$PKG_CONFIG --variable=exec_prefix QtCore`/bin/moc
RCC=`$PKG_CONFIG --variable=exec_prefix QtCore`/bin/rcc
UIC=`$PKG_CONFIG --variable=exec_prefix QtCore`/bin/uic], UIC=`$PKG_CONFIG --variable=exec_prefix QtCore`/bin/uic],
[AC_MSG_WARN(QT4 library not found)]) [AC_MSG_WARN(QT4 library not found)])
fi]) fi])
...@@ -5445,6 +5446,7 @@ AC_SUBST(ARCH) ...@@ -5445,6 +5446,7 @@ AC_SUBST(ARCH)
AC_SUBST(ALIASES) AC_SUBST(ALIASES)
AC_SUBST(ASM) AC_SUBST(ASM)
AC_SUBST(MOC) AC_SUBST(MOC)
AC_SUBST(RCC)
AC_SUBST(UIC) AC_SUBST(UIC)
AC_SUBST(WINDRES) AC_SUBST(WINDRES)
AC_SUBST(MOZILLA_SDK_PATH) AC_SUBST(MOZILLA_SDK_PATH)
......
...@@ -2433,8 +2433,8 @@ static void SDTCallBack( demux_t *p_demux, dvbpsi_sdt_t *p_sdt ) ...@@ -2433,8 +2433,8 @@ static void SDTCallBack( demux_t *p_demux, dvbpsi_sdt_t *p_sdt )
msg_Dbg( p_demux, " - type=%d provider=%s name=%s", msg_Dbg( p_demux, " - type=%d provider=%s name=%s",
pD->i_service_type, str1, str2 ); pD->i_service_type, str1, str2 );
vlc_meta_Add( p_meta, "Name", str2 ); vlc_meta_SetTitle( p_meta, str2 );
vlc_meta_Add( p_meta, "Provider", str1 ); vlc_meta_SetProvider( p_meta, str1 );
if( pD->i_service_type >= 0x01 && pD->i_service_type <= 0x10 ) if( pD->i_service_type >= 0x01 && pD->i_service_type <= 0x10 )
vlc_meta_Add( p_meta, "Type", psz_type[pD->i_service_type] ); vlc_meta_Add( p_meta, "Type", psz_type[pD->i_service_type] );
} }
...@@ -2451,7 +2451,6 @@ static void SDTCallBack( demux_t *p_demux, dvbpsi_sdt_t *p_sdt ) ...@@ -2451,7 +2451,6 @@ static void SDTCallBack( demux_t *p_demux, dvbpsi_sdt_t *p_sdt )
else else
vlc_meta_Add( p_meta, "Status", "Unknown" ); vlc_meta_Add( p_meta, "Status", "Unknown" );
es_out_Control( p_demux->out, ES_OUT_SET_GROUP_META, es_out_Control( p_demux->out, ES_OUT_SET_GROUP_META,
p_srv->i_service_id, p_meta ); p_srv->i_service_id, p_meta );
vlc_meta_Delete( p_meta ); vlc_meta_Delete( p_meta );
...@@ -2622,7 +2621,7 @@ static void EITCallBack( demux_t *p_demux, dvbpsi_eit_t *p_eit ) ...@@ -2622,7 +2621,7 @@ static void EITCallBack( demux_t *p_demux, dvbpsi_eit_t *p_eit )
if( p_evt->i_running_status == 0x04 ) if( p_evt->i_running_status == 0x04 )
{ {
vlc_meta_Add( p_meta, VLC_META_NOW_PLAYING, psz_name ); vlc_meta_SetNowPlaying( p_meta, psz_name );
b_event_active = VLC_TRUE; b_event_active = VLC_TRUE;
} }
...@@ -2631,7 +2630,7 @@ static void EITCallBack( demux_t *p_demux, dvbpsi_eit_t *p_eit ) ...@@ -2631,7 +2630,7 @@ static void EITCallBack( demux_t *p_demux, dvbpsi_eit_t *p_eit )
} }
if( !b_event_active ) if( !b_event_active )
vlc_meta_Add( p_meta, VLC_META_NOW_PLAYING, "" ); vlc_meta_SetNowPlaying( p_meta, "" );
es_out_Control( p_demux->out, ES_OUT_SET_GROUP_META, es_out_Control( p_demux->out, ES_OUT_SET_GROUP_META,
p_eit->i_service_id, p_meta ); p_eit->i_service_id, p_meta );
vlc_meta_Delete( p_meta ); vlc_meta_Delete( p_meta );
......
...@@ -565,7 +565,7 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta ) ...@@ -565,7 +565,7 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
es_out_pgrm_t *p_pgrm = NULL; es_out_pgrm_t *p_pgrm = NULL;
input_thread_t *p_input = p_sys->p_input; input_thread_t *p_input = p_sys->p_input;
char *psz_cat = malloc( strlen(_("Program")) + 10 ); char *psz_cat = malloc( strlen(_("Program")) + 10 );
char *psz_name = NULL; char *psz_title = NULL;
char *psz_now_playing = NULL; char *psz_now_playing = NULL;
char *psz_provider = NULL; char *psz_provider = NULL;
int i; int i;
...@@ -573,10 +573,11 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta ) ...@@ -573,10 +573,11 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
msg_Dbg( p_input, "EsOutProgramMeta: number=%d", i_group ); msg_Dbg( p_input, "EsOutProgramMeta: number=%d", i_group );
sprintf( psz_cat, "%s %d", _("Program"), i_group ); sprintf( psz_cat, "%s %d", _("Program"), i_group );
// if( p_meta->psz_provider) psz_provider = p_meta->psz_provider; if( p_meta->psz_title ) psz_title = p_meta->psz_title;
if( p_meta->psz_provider) psz_provider = p_meta->psz_provider;
if( p_meta->psz_nowplaying ) psz_now_playing = p_meta->psz_nowplaying; if( p_meta->psz_nowplaying ) psz_now_playing = p_meta->psz_nowplaying;
if( !psz_name && !psz_now_playing ) if( !psz_title && !psz_now_playing )
{ {
free( psz_cat ); free( psz_cat );
return; return;
...@@ -595,7 +596,7 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta ) ...@@ -595,7 +596,7 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
p_pgrm = EsOutProgramAdd( out, i_group ); p_pgrm = EsOutProgramAdd( out, i_group );
/* Update the description text of the program */ /* Update the description text of the program */
if( psz_name && *psz_name ) if( psz_title && *psz_title )
{ {
vlc_value_t val; vlc_value_t val;
vlc_value_t text; vlc_value_t text;
...@@ -606,13 +607,13 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta ) ...@@ -606,13 +607,13 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
if( psz_provider && *psz_provider ) if( psz_provider && *psz_provider )
{ {
asprintf( &text.psz_string, "%s [%s]", psz_name, psz_provider ); asprintf( &text.psz_string, "%s [%s]", psz_title, psz_provider );
var_Change( p_input, "program", VLC_VAR_ADDCHOICE, &val, &text ); var_Change( p_input, "program", VLC_VAR_ADDCHOICE, &val, &text );
free( text.psz_string ); free( text.psz_string );
} }
else else
{ {
text.psz_string = psz_name; text.psz_string = psz_title;
var_Change( p_input, "program", VLC_VAR_ADDCHOICE, &val, &text ); var_Change( p_input, "program", VLC_VAR_ADDCHOICE, &val, &text );
} }
} }
...@@ -623,8 +624,8 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta ) ...@@ -623,8 +624,8 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
if( p_sys->p_pgrm == p_pgrm ) if( p_sys->p_pgrm == p_pgrm )
{ {
input_Control( p_input, INPUT_ADD_INFO, _(VLC_META_INFO_CAT), vlc_meta_SetNowPlaying( p_input->input.p_item->p_meta,
_(VLC_META_NOW_PLAYING), "%s", psz_now_playing ); psz_now_playing );
} }
} }
free( psz_cat ); free( psz_cat );
......
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