]> git.sesse.net Git - vlc/blobdiff - src/control/audio.c
libvlc apps don't know VLC error codes
[vlc] / src / control / audio.c
index 89ee0a76bc77d1aa1ae319562f491f51e89e3d67..4ff09fd1bd4d3948386d7a1d3fb192ce7216a5ac 100644 (file)
@@ -409,19 +409,17 @@ int libvlc_audio_get_track( libvlc_media_player_t *p_mi,
     vlc_value_t val_list;
     vlc_value_t val;
     int i_track = -1;
-    int i_ret = -1;
     int i;
 
     if( !p_input_thread )
         return -1;
 
-    i_ret = var_Get( p_input_thread, "audio-es", &val );
-    if( i_ret < 0 )
+    if( var_Get( p_input_thread, "audio-es", &val ) < 0 )
     {
         vlc_object_release( p_input_thread );
         libvlc_exception_raise( p_e );
         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 );