Changeset 57358 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Aug 14, 2015 3:16:38 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r56838 r57358 16 16 */ 17 17 18 /******************************************************************************* 19 * Header Files * 20 *******************************************************************************/ 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 21 22 #define LOG_GROUP LOG_GROUP_DEV_AC97 22 23 #include <VBox/log.h> … … 34 35 #include "AudioMixer.h" 35 36 36 /******************************************************************************* 37 * Defined Constants And Macros * 38 *******************************************************************************/ 37 38 /********************************************************************************************************************************* 39 * Defined Constants And Macros * 40 *********************************************************************************************************************************/ 39 41 #undef LOG_VOICES 40 42 … … 169 171 170 172 171 /******************************************************************************* 172 * Structures and Typedefs *173 ******************************************************************************* /173 /********************************************************************************************************************************* 174 * Structures and Typedefs * 175 *********************************************************************************************************************************/ 174 176 /** 175 177 * Buffer descriptor. -
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r56838 r57358 20 20 */ 21 21 22 /******************************************************************************* 23 * Header Files * 24 *******************************************************************************/ 22 23 /********************************************************************************************************************************* 24 * Header Files * 25 *********************************************************************************************************************************/ 25 26 #define LOG_GROUP LOG_GROUP_DEV_HDA 26 27 #include <VBox/log.h> … … 44 45 #include "DevIchHdaCodec.h" 45 46 46 /******************************************************************************* 47 * Defined Constants And Macros * 48 *******************************************************************************/ 47 48 /********************************************************************************************************************************* 49 * Defined Constants And Macros * 50 *********************************************************************************************************************************/ 49 51 //#define HDA_AS_PCI_EXPRESS 50 52 #define VBOX_WITH_INTEL_HDA … … 515 517 516 518 517 /******************************************************************************* 518 * Structures and Typedefs *519 ******************************************************************************* /519 /********************************************************************************************************************************* 520 * Structures and Typedefs * 521 *********************************************************************************************************************************/ 520 522 typedef struct HDABDLEDESC 521 523 { … … 687 689 688 690 689 /******************************************************************************* 690 * Internal Functions *691 ******************************************************************************* /691 /********************************************************************************************************************************* 692 * Internal Functions * 693 *********************************************************************************************************************************/ 692 694 #ifndef VBOX_DEVICE_STRUCT_TESTCASE 693 695 static FNPDMDEVRESET hdaReset; … … 741 743 742 744 743 /******************************************************************************* 744 * Global Variables *745 ******************************************************************************* /745 /********************************************************************************************************************************* 746 * Global Variables * 747 *********************************************************************************************************************************/ 746 748 747 749 /* see 302349 p 6.2*/ -
trunk/src/VBox/Devices/Audio/DevIchHdaCodec.cpp
r56992 r57358 21 21 22 22 23 /******************************************************************************* 24 * Header Files *25 ******************************************************************************* /23 /********************************************************************************************************************************* 24 * Header Files * 25 *********************************************************************************************************************************/ 26 26 #define LOG_GROUP LOG_GROUP_DEV_HDA_CODEC 27 27 #include <VBox/vmm/pdmdev.h> … … 38 38 39 39 40 /******************************************************************************* 41 * Defined Constants And Macros *42 ******************************************************************************* /40 /********************************************************************************************************************************* 41 * Defined Constants And Macros * 42 *********************************************************************************************************************************/ 43 43 /* PRM 5.3.1 */ 44 44 /** Codec address mask. */ … … 521 521 522 522 523 /******************************************************************************* 524 * Structures and Typedefs *525 ******************************************************************************* /523 /********************************************************************************************************************************* 524 * Structures and Typedefs * 525 *********************************************************************************************************************************/ 526 526 /** The F00 parameter length (in dwords). */ 527 527 #define CODECNODE_F00_PARAM_LENGTH 20 … … 757 757 } CODECNODE, *PCODECNODE; 758 758 AssertNodeSize(CODECNODE, 60 + 6); 759 /******************************************************************************* 760 * Global Variables * 761 *******************************************************************************/ 759 760 761 /********************************************************************************************************************************* 762 * Global Variables * 763 *********************************************************************************************************************************/ 762 764 /* STAC9220 - Nodes IDs / names. */ 763 765 #define STAC9220_NID_ROOT 0x0 /* Root node */ -
trunk/src/VBox/Devices/Audio/DrvHostALSAAudio.cpp
r57346 r57358 41 41 */ 42 42 43 /******************************************************************************* 44 * Header Files * 45 *******************************************************************************/ 43 44 /********************************************************************************************************************************* 45 * Header Files * 46 *********************************************************************************************************************************/ 46 47 #define LOG_GROUP LOG_GROUP_DRV_HOST_AUDIO 47 48 #include <VBox/log.h> -
trunk/src/VBox/Devices/Audio/DrvHostPulseAudio.cpp
r56648 r57358 17 17 18 18 19 /******************************************************************************* 20 * Header Files *21 ******************************************************************************* /19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_DRV_HOST_AUDIO 23 23 #include <VBox/log.h> -
trunk/src/VBox/Devices/Audio/testcase/tstAudioMixBuffer.cpp
r55920 r57358 17 17 18 18 19 /******************************************************************************* 20 * Header Files *21 ******************************************************************************* /19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 22 #include <iprt/err.h> 23 23 #include <iprt/initterm.h> … … 33 33 34 34 35 /******************************************************************************* 36 * Structures and Typedefs *37 ******************************************************************************* /35 /********************************************************************************************************************************* 36 * Structures and Typedefs * 37 *********************************************************************************************************************************/ 38 38 39 39 static int tstSingle(RTTEST hTest)
Note:
See TracChangeset
for help on using the changeset viewer.