浏览代码

audio: remove INT16

Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-id: 20170425223739.6703-10-quintela@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Juan Quintela 8 年之前
父节点
当前提交
7bf10b1de2
共有 2 个文件被更改,包括 3 次插入4 次删除
  1. 1 1
      hw/audio/fmopl.c
  2. 2 3
      hw/audio/fmopl.h

+ 1 - 1
hw/audio/fmopl.c

@@ -984,7 +984,7 @@ static void OPL_UnLockTable(void)
 /*******************************************************************************/
 /*******************************************************************************/
 
 
 /* ---------- update one of chip ----------- */
 /* ---------- update one of chip ----------- */
-void YM3812UpdateOne(FM_OPL *OPL, INT16 *buffer, int length)
+void YM3812UpdateOne(FM_OPL *OPL, int16_t *buffer, int length)
 {
 {
     int i;
     int i;
 	int data;
 	int data;

+ 2 - 3
hw/audio/fmopl.h

@@ -10,12 +10,11 @@
 /* compiler dependence */
 /* compiler dependence */
 #ifndef OSD_CPU_H
 #ifndef OSD_CPU_H
 #define OSD_CPU_H
 #define OSD_CPU_H
-typedef signed short	INT16;   /* signed 16bit   */
 typedef signed int		INT32;   /* signed 32bit   */
 typedef signed int		INT32;   /* signed 32bit   */
 #endif
 #endif
 
 
 #if (OPL_OUTPUT_BIT==16)
 #if (OPL_OUTPUT_BIT==16)
-typedef INT16 OPLSAMPLE;
+typedef int16_t OPLSAMPLE;
 #endif
 #endif
 #if (OPL_OUTPUT_BIT==8)
 #if (OPL_OUTPUT_BIT==8)
 typedef unsigned char  OPLSAMPLE;
 typedef unsigned char  OPLSAMPLE;
@@ -142,5 +141,5 @@ int OPLWrite(FM_OPL *OPL,int a,int v);
 unsigned char OPLRead(FM_OPL *OPL,int a);
 unsigned char OPLRead(FM_OPL *OPL,int a);
 int OPLTimerOver(FM_OPL *OPL,int c);
 int OPLTimerOver(FM_OPL *OPL,int c);
 
 
-void YM3812UpdateOne(FM_OPL *OPL, INT16 *buffer, int length);
+void YM3812UpdateOne(FM_OPL *OPL, int16_t *buffer, int length);
 #endif
 #endif