VirtualBox

Changeset 59989 in vbox for trunk/src/VBox/Devices


Ignore:
Timestamp:
Mar 11, 2016 12:29:36 PM (9 years ago)
Author:
vboxsync
Message:

Build fix, warnings.

Location:
trunk/src/VBox/Devices/Audio
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DrvAudio.cpp

    r59987 r59989  
    17561756
    17571757    {"PLIVE", AUD_OPT_BOOL, &conf.plive,
    1758      "(undocumented)", NULL, 0}, /** @todo What is this? */
    1759 
    1760     NULL
     1758     "(undocumented)", NULL, 0} /** @todo What is this? */
    17611759};
    17621760
  • trunk/src/VBox/Devices/Audio/DrvHostALSAAudio.cpp

    r59987 r59989  
    14871487
    14881488    {"ADCDev", AUD_OPT_STR, &s_ALSAConf.pcm_name_in,
    1489      "ADC device name", NULL, 0},
    1490 
    1491     NULL
     1489     "ADC device name", NULL, 0}
    14921490};
    14931491
  • trunk/src/VBox/Devices/Audio/DrvHostCoreAudio.cpp

    r59987 r59989  
    20712071
    20722072    /** @todo Implement a proper device detection. */
    2073     pCfg->cDevsIn         = 1;
    2074     pCfg->cDevsOut        = 1;
     2073    pCfg->cSource         = 1;
     2074    pCfg->cSinks          = 1;
    20752075
    20762076    return VINF_SUCCESS;
  • trunk/src/VBox/Devices/Audio/DrvHostOSSAudio.cpp

    r59987 r59989  
    10671067    PDM_DRVREG_VERSION
    10681068};
     1069
  • trunk/src/VBox/Devices/Audio/DrvHostPulseAudio.cpp

    r59987 r59989  
    986986}
    987987
    988 static DECLCALLBACK(void) paEnumSinkCb(pa_context *pCtx, const pa_sink_info *pInfo, int eol, void *pvUserData)
     988static void paEnumSinkCb(pa_context *pCtx, const pa_sink_info *pInfo, int eol, void *pvUserData)
    989989{
    990990    if (eol != 0)
     
    10061006}
    10071007
    1008 static DECLCALLBACK(void) paEnumSourceCb(pa_context *pCtx, const pa_source_info *pInfo, int eol, void *pvUserData)
     1008static void paEnumSourceCb(pa_context *pCtx, const pa_source_info *pInfo, int eol, void *pvUserData)
    10091009{
    10101010    if (eol != 0)
     
    10261026}
    10271027
    1028 static DECLCALLBACK(void) paEnumServerCb(pa_context *pCtx, const pa_server_info *pInfo, void *pvUserData)
     1028static void paEnumServerCb(pa_context *pCtx, const pa_server_info *pInfo, void *pvUserData)
    10291029{
    10301030    AssertPtrReturnVoid(pCtx);
     
    14571457     "DAC period size in milliseconds", NULL, 0},
    14581458    {"ADC_MS", AUD_OPT_INT, &s_pulseCfg.buffer_msecs_in,
    1459      "ADC period size in milliseconds", NULL, 0},
    1460 
    1461     NULL
     1459     "ADC period size in milliseconds", NULL, 0}
    14621460};
    14631461
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette