Commit b79a3de0 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

libvlc apps don't know VLC error codes

parent 84e1b303
...@@ -409,19 +409,17 @@ int libvlc_audio_get_track( libvlc_media_player_t *p_mi, ...@@ -409,19 +409,17 @@ int libvlc_audio_get_track( libvlc_media_player_t *p_mi,
vlc_value_t val_list; vlc_value_t val_list;
vlc_value_t val; vlc_value_t val;
int i_track = -1; int i_track = -1;
int i_ret = -1;
int i; int i;
if( !p_input_thread ) if( !p_input_thread )
return -1; return -1;
i_ret = var_Get( p_input_thread, "audio-es", &val ); if( var_Get( p_input_thread, "audio-es", &val ) < 0 )
if( i_ret < 0 )
{ {
vlc_object_release( p_input_thread ); vlc_object_release( p_input_thread );
libvlc_exception_raise( p_e ); libvlc_exception_raise( p_e );
libvlc_printerr( "Audio track information not found" ); libvlc_printerr( "Audio track information not found" );
return i_ret; return -1;
} }
var_Change( p_input_thread, "audio-es", VLC_VAR_GETCHOICES, &val_list, NULL ); var_Change( p_input_thread, "audio-es", VLC_VAR_GETCHOICES, &val_list, NULL );
......
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