audio.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:17k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * libvlc_audio.c: New libvlc audio control API
  3.  *****************************************************************************
  4.  * Copyright (C) 2006 the VideoLAN team
  5.  * $Id: 4a590726e072c6cf85deaa76a69f0ec73cab8eaa $
  6.  *
  7.  * Authors: Filippo Carone <filippo@carone.org>
  8.  *          Jean-Paul Saman <jpsaman _at_ m2x _dot_ nl>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifdef HAVE_CONFIG_H
  25. # include <config.h>
  26. #endif
  27. #include <vlc/libvlc.h>
  28. #include <vlc/libvlc_media.h>
  29. #include <vlc/libvlc_media_player.h>
  30. #include <vlc_common.h>
  31. #include <vlc_input.h>
  32. #include <vlc_aout.h>
  33. #include "libvlc_internal.h"
  34. #include "media_player_internal.h"
  35. /*
  36.  * Remember to release the returned aout_instance_t since it is locked at
  37.  * the end of this function.
  38.  */
  39. static aout_instance_t *GetAOut( libvlc_instance_t *p_instance,
  40.                                  libvlc_exception_t *p_exception )
  41. {
  42.     if( !p_instance )
  43.         return NULL;
  44.     aout_instance_t * p_aout = NULL;
  45.     p_aout = vlc_object_find( p_instance->p_libvlc_int, VLC_OBJECT_AOUT, FIND_CHILD );
  46.     if( !p_aout )
  47.     {
  48.         libvlc_exception_raise( p_exception, "No active audio output" );
  49.         return NULL;
  50.     }
  51.     return p_aout;
  52. }
  53. /*****************************************
  54.  * Get the list of available audio outputs
  55.  *****************************************/
  56. VLC_PUBLIC_API libvlc_audio_output_t *
  57.         libvlc_audio_output_list_get( libvlc_instance_t *p_instance,
  58.                                       libvlc_exception_t *p_e )
  59. {
  60.     VLC_UNUSED( p_instance );
  61.     libvlc_audio_output_t *p_list = NULL,
  62.                           *p_actual = NULL,
  63.                           *p_previous = NULL;
  64.     module_t **module_list = module_list_get( NULL );
  65.     for (size_t i = 0; module_list[i]; i++)
  66.     {
  67.         module_t *p_module = module_list[i];
  68.         if( module_provides( p_module, "audio output" ) )
  69.         {
  70.             if( p_actual == NULL)
  71.             {
  72.                 p_actual = ( libvlc_audio_output_t * )
  73.                     malloc( sizeof( libvlc_audio_output_t ) );
  74.                 if( p_actual == NULL )
  75.                 {
  76.                     libvlc_exception_raise( p_e, "Not enough memory" );
  77.                     libvlc_audio_output_list_release( p_list );
  78.                     module_list_free( module_list );
  79.                     return NULL;
  80.                 }
  81.                 if( p_list == NULL )
  82.                 {
  83.                     p_list = p_actual;
  84.                     p_previous = p_actual;
  85.                 }
  86.             }
  87.             p_actual->psz_name = strdup( module_get_object( p_module ) );
  88.             p_actual->psz_description = strdup( module_get_name( p_module, true )  );
  89.             p_actual->p_next = NULL;
  90.             if( p_previous != p_actual ) /* not first item */
  91.                 p_previous->p_next = p_actual;
  92.             p_previous = p_actual;
  93.             p_actual = p_actual->p_next;
  94.         }
  95.     }
  96.     module_list_free( module_list );
  97.     return p_list;
  98. }
  99. /********************************************
  100.  * Free the list of available audio outputs
  101.  ***********************************************/
  102. VLC_PUBLIC_API void libvlc_audio_output_list_release( libvlc_audio_output_t *p_list )
  103. {
  104.     libvlc_audio_output_t *p_actual, *p_before;
  105.     p_actual = p_list;
  106.     while ( p_actual )
  107.     {
  108.         free( p_actual->psz_name );
  109.         free( p_actual->psz_description );
  110.         p_before = p_actual;
  111.         p_actual = p_before->p_next;
  112.         free( p_before );
  113.     }
  114. }
  115. /***********************
  116.  * Set the audio output.
  117.  ***********************/
  118. VLC_PUBLIC_API int libvlc_audio_output_set( libvlc_instance_t *p_instance,
  119.                                             const char *psz_name )
  120. {
  121.     if( module_exists( psz_name ) )
  122.     {
  123.         config_PutPsz( p_instance->p_libvlc_int, "aout", psz_name );
  124.         return true;
  125.     }
  126.     else
  127.         return false;
  128. }
  129. /****************************
  130.  * Get count of devices.
  131.  *****************************/
  132. int libvlc_audio_output_device_count( libvlc_instance_t *p_instance,
  133.                                       const char *psz_audio_output )
  134. {
  135.     char *psz_config_name = NULL;
  136.     if( !psz_audio_output )
  137.         return 0;
  138.     if( asprintf( &psz_config_name, "%s-audio-device", psz_audio_output ) == -1 )
  139.         return 0;
  140.     module_config_t *p_module_config = config_FindConfig(
  141.         VLC_OBJECT( p_instance->p_libvlc_int ), psz_config_name );
  142.     if( p_module_config && p_module_config->pf_update_list )
  143.     {
  144.         vlc_value_t val;
  145.         val.psz_string = strdup( p_module_config->value.psz );
  146.         p_module_config->pf_update_list(
  147.             VLC_OBJECT( p_instance->p_libvlc_int ), psz_config_name, val, val, NULL );
  148.         free( val.psz_string );
  149.         free( psz_config_name );
  150.         return p_module_config->i_list;
  151.     }
  152.     else
  153.         free( psz_config_name );
  154.     return 0;
  155. }
  156. /********************************
  157.  * Get long name of device
  158.  *********************************/
  159. char * libvlc_audio_output_device_longname( libvlc_instance_t *p_instance,
  160.                                             const char *psz_audio_output,
  161.                                             int i_device )
  162. {
  163.     char *psz_config_name = NULL;
  164.     if( !psz_audio_output )
  165.         return NULL;
  166.     if( asprintf( &psz_config_name, "%s-audio-device", psz_audio_output ) == -1 )
  167.         return NULL;
  168.     module_config_t *p_module_config = config_FindConfig(
  169.         VLC_OBJECT( p_instance->p_libvlc_int ), psz_config_name );
  170.     if( p_module_config )
  171.     {
  172.         // refresh if there arent devices
  173.         if( p_module_config->i_list < 2 && p_module_config->pf_update_list )
  174.         {
  175.             vlc_value_t val;
  176.             val.psz_string = strdup( p_module_config->value.psz );
  177.             p_module_config->pf_update_list(
  178.                 VLC_OBJECT( p_instance->p_libvlc_int ), psz_config_name, val, val, NULL );
  179.             free( val.psz_string );
  180.         }
  181.         free( psz_config_name );
  182.         if( i_device >= 0 && i_device < p_module_config->i_list )
  183.         {
  184.             if( p_module_config->ppsz_list_text[i_device] )
  185.                 return strdup( p_module_config->ppsz_list_text[i_device] );
  186.             else
  187.                 return strdup( p_module_config->ppsz_list[i_device] );
  188.         }
  189.     }
  190.     else
  191.         free( psz_config_name );
  192.     return NULL;
  193. }
  194. /********************************
  195.  * Get id name of device
  196.  *********************************/
  197. char * libvlc_audio_output_device_id( libvlc_instance_t *p_instance,
  198.                                       const char *psz_audio_output,
  199.                                       int i_device )
  200. {
  201.     char *psz_config_name = NULL;
  202.     if( !psz_audio_output )
  203.         return NULL;
  204.     if( asprintf( &psz_config_name, "%s-audio-device", psz_audio_output ) == -1)
  205.         return NULL;
  206.     module_config_t *p_module_config = config_FindConfig(
  207.         VLC_OBJECT( p_instance->p_libvlc_int ), psz_config_name );
  208.     if( p_module_config )
  209.     {
  210.         // refresh if there arent devices
  211.         if( p_module_config->i_list < 2 && p_module_config->pf_update_list )
  212.         {
  213.             vlc_value_t val;
  214.             val.psz_string = strdup( p_module_config->value.psz );
  215.             p_module_config->pf_update_list(
  216.                 VLC_OBJECT( p_instance->p_libvlc_int ), psz_config_name, val, val, NULL );
  217.             free( val.psz_string );
  218.         }
  219.         free( psz_config_name );
  220.         if( i_device >= 0 && i_device < p_module_config->i_list )
  221.             return strdup( p_module_config->ppsz_list[i_device] );
  222.     }
  223.     else
  224.         free( psz_config_name );
  225.     return NULL;
  226. }
  227. /*****************************
  228.  * Set device for using
  229.  *****************************/
  230. VLC_PUBLIC_API void libvlc_audio_output_device_set( libvlc_instance_t *p_instance,
  231.                                                     const char *psz_audio_output,
  232.                                                     const char *psz_device_id )
  233. {
  234.     char *psz_config_name = NULL;
  235.     if( !psz_audio_output || !psz_device_id )
  236.         return;
  237.     if( asprintf( &psz_config_name, "%s-audio-device", psz_audio_output ) == -1 )
  238.         return;
  239.     config_PutPsz( p_instance->p_libvlc_int, psz_config_name, psz_device_id );
  240.     free( psz_config_name );
  241. }
  242. /*****************************************************************************
  243.  * libvlc_audio_output_get_device_type : Get the current audio device type
  244.  *****************************************************************************/
  245. int libvlc_audio_output_get_device_type( libvlc_instance_t *p_instance,
  246.                                          libvlc_exception_t *p_e )
  247. {
  248.     aout_instance_t *p_aout = GetAOut( p_instance, p_e );
  249.     if( p_aout )
  250.     {
  251.         vlc_value_t val;
  252.         var_Get( p_aout, "audio-device", &val );
  253.         vlc_object_release( p_aout );
  254.         return val.i_int;
  255.     }
  256.     libvlc_exception_raise( p_e, "Unable to get audio output" );
  257.     return libvlc_AudioOutputDevice_Error;
  258. }
  259. /*****************************************************************************
  260.  * libvlc_audio_output_set_device_type : Set the audio device type
  261.  *****************************************************************************/
  262. void libvlc_audio_output_set_device_type( libvlc_instance_t *p_instance,
  263.                                           int device_type,
  264.                                           libvlc_exception_t *p_e )
  265. {
  266.     aout_instance_t *p_aout = GetAOut( p_instance, p_e );
  267.     if( p_aout )
  268.     {
  269.         vlc_value_t val;
  270.         int i_ret = -1;
  271.         val.i_int = (int) device_type;
  272.         i_ret = var_Set( p_aout, "audio-device", val );
  273.         if( i_ret < 0 )
  274.         {
  275.             libvlc_exception_raise( p_e, "Failed setting audio device" );
  276.             vlc_object_release( p_aout );
  277.             return;
  278.         }
  279.         vlc_object_release( p_aout );
  280.     }
  281. }
  282. /*****************************************************************************
  283.  * libvlc_audio_get_mute : Get the volume state, true if muted
  284.  *****************************************************************************/
  285. void libvlc_audio_toggle_mute( libvlc_instance_t *p_instance,
  286.                                libvlc_exception_t *p_e )
  287. {
  288.     VLC_UNUSED(p_e);
  289.     aout_VolumeMute( p_instance->p_libvlc_int, NULL );
  290. }
  291. int libvlc_audio_get_mute( libvlc_instance_t *p_instance,
  292.                            libvlc_exception_t *p_e )
  293. {
  294.     /*
  295.      * If the volume level is 0, then the channel is muted
  296.      */
  297.     audio_volume_t i_volume;
  298.     i_volume = libvlc_audio_get_volume(p_instance, p_e);
  299.     if ( i_volume == 0 )
  300.         return true;
  301.     return false;
  302. }
  303. void libvlc_audio_set_mute( libvlc_instance_t *p_instance, int mute,
  304.                             libvlc_exception_t *p_e )
  305. {
  306.     if ( mute ^ libvlc_audio_get_mute( p_instance, p_e ) )
  307.     {
  308.         aout_VolumeMute( p_instance->p_libvlc_int, NULL );
  309.     }
  310. }
  311. /*****************************************************************************
  312.  * libvlc_audio_get_volume : Get the current volume (range 0-200 %)
  313.  *****************************************************************************/
  314. int libvlc_audio_get_volume( libvlc_instance_t *p_instance,
  315.                              libvlc_exception_t *p_e )
  316. {
  317.     VLC_UNUSED(p_e);
  318.     audio_volume_t i_volume;
  319.     aout_VolumeGet( p_instance->p_libvlc_int, &i_volume );
  320.     return (i_volume*200+AOUT_VOLUME_MAX/2)/AOUT_VOLUME_MAX;
  321. }
  322. /*****************************************************************************
  323.  * libvlc_audio_set_volume : Set the current volume
  324.  *****************************************************************************/
  325. void libvlc_audio_set_volume( libvlc_instance_t *p_instance, int i_volume,
  326.                               libvlc_exception_t *p_e )
  327. {
  328.     if( i_volume >= 0 && i_volume <= 200 )
  329.     {
  330.         i_volume = (i_volume * AOUT_VOLUME_MAX + 100) / 200;
  331.         aout_VolumeSet( p_instance->p_libvlc_int, i_volume );
  332.     }
  333.     else
  334.     {
  335.         libvlc_exception_raise( p_e, "Volume out of range" );
  336.     }
  337. }
  338. /*****************************************************************************
  339.  * libvlc_audio_get_track_count : Get the number of available audio tracks
  340.  *****************************************************************************/
  341. int libvlc_audio_get_track_count( libvlc_media_player_t *p_mi,
  342.                                   libvlc_exception_t *p_e )
  343. {
  344.     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi, p_e );
  345.     vlc_value_t val_list;
  346.     int i_track_count;
  347.     if( !p_input_thread )
  348.         return -1;
  349.     var_Change( p_input_thread, "audio-es", VLC_VAR_GETCHOICES, &val_list, NULL );
  350.     i_track_count = val_list.p_list->i_count;
  351.     var_Change( p_input_thread, "audio-es", VLC_VAR_FREELIST, &val_list, NULL );
  352.     vlc_object_release( p_input_thread );
  353.     return i_track_count;
  354. }
  355. /*****************************************************************************
  356.  * libvlc_audio_get_track_description : Get the description of available audio tracks
  357.  *****************************************************************************/
  358. libvlc_track_description_t *
  359.         libvlc_audio_get_track_description( libvlc_media_player_t *p_mi,
  360.                                             libvlc_exception_t *p_e )
  361. {
  362.     return libvlc_get_track_description( p_mi, "audio-es", p_e);
  363. }
  364. /*****************************************************************************
  365.  * libvlc_audio_get_track : Get the current audio track
  366.  *****************************************************************************/
  367. int libvlc_audio_get_track( libvlc_media_player_t *p_mi,
  368.                             libvlc_exception_t *p_e )
  369. {
  370.     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi, p_e );
  371.     vlc_value_t val_list;
  372.     vlc_value_t val;
  373.     int i_track = -1;
  374.     int i_ret = -1;
  375.     int i;
  376.     if( !p_input_thread )
  377.         return -1;
  378.     i_ret = var_Get( p_input_thread, "audio-es", &val );
  379.     if( i_ret < 0 )
  380.     {
  381.         libvlc_exception_raise( p_e, "Getting Audio track information failed" );
  382.         vlc_object_release( p_input_thread );
  383.         return i_ret;
  384.     }
  385.     var_Change( p_input_thread, "audio-es", VLC_VAR_GETCHOICES, &val_list, NULL );
  386.     for( i = 0; i < val_list.p_list->i_count; i++ )
  387.     {
  388.         if( val_list.p_list->p_values[i].i_int == val.i_int )
  389.         {
  390.             i_track = i;
  391.             break;
  392.         }
  393.     }
  394.     var_Change( p_input_thread, "audio-es", VLC_VAR_FREELIST, &val_list, NULL );
  395.     vlc_object_release( p_input_thread );
  396.     return i_track;
  397. }
  398. /*****************************************************************************
  399.  * libvlc_audio_set_track : Set the current audio track
  400.  *****************************************************************************/
  401. void libvlc_audio_set_track( libvlc_media_player_t *p_mi, int i_track,
  402.                              libvlc_exception_t *p_e )
  403. {
  404.     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi, p_e );
  405.     vlc_value_t val_list;
  406.     vlc_value_t newval;
  407.     int i_ret = -1;
  408.     if( !p_input_thread )
  409.         return;
  410.     var_Change( p_input_thread, "audio-es", VLC_VAR_GETCHOICES, &val_list, NULL );
  411.     if( (i_track < 0) || (i_track > val_list.p_list->i_count) )
  412.     {
  413.         libvlc_exception_raise( p_e, "Audio track out of range" );
  414.         goto end;
  415.     }
  416.     newval = val_list.p_list->p_values[i_track];
  417.     i_ret = var_Set( p_input_thread, "audio-es", newval );
  418.     if( i_ret < 0 )
  419.         libvlc_exception_raise( p_e, "Setting audio track failed" );
  420. end:
  421.     var_Change( p_input_thread, "audio-es", VLC_VAR_FREELIST, &val_list, NULL );
  422.     vlc_object_release( p_input_thread );
  423. }
  424. /*****************************************************************************
  425.  * libvlc_audio_get_channel : Get the current audio channel
  426.  *****************************************************************************/
  427. int libvlc_audio_get_channel( libvlc_instance_t *p_instance,
  428.                               libvlc_exception_t *p_e )
  429. {
  430.     aout_instance_t *p_aout = GetAOut( p_instance, p_e );
  431.     if( p_aout )
  432.     {
  433.         vlc_value_t val;
  434.         var_Get( p_aout, "audio-channels", &val );
  435.         vlc_object_release( p_aout );
  436.         return val.i_int;
  437.     }
  438.     libvlc_exception_raise( p_e, "Unable to get audio output" );
  439.     return libvlc_AudioChannel_Error;
  440. }
  441. /*****************************************************************************
  442.  * libvlc_audio_set_channel : Set the current audio channel
  443.  *****************************************************************************/
  444. void libvlc_audio_set_channel( libvlc_instance_t *p_instance,
  445.                                int channel,
  446.                                libvlc_exception_t *p_e )
  447. {
  448.     aout_instance_t *p_aout = GetAOut( p_instance, p_e );
  449.     if( p_aout )
  450.     {
  451.         vlc_value_t val;
  452.         int i_ret = -1;
  453.         val.i_int = channel;
  454.         i_ret = var_Set( p_aout, "audio-channels", val );
  455.         if( i_ret < 0 )
  456.             libvlc_exception_raise( p_e, "Failed setting audio channel" );
  457.         vlc_object_release( p_aout );
  458.     }
  459. }