2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include "ad_internal.h"
26 #include "libmpdemux/aviprint.h"
27 #include "loader/ldt_keeper.h"
28 #include "loader/wine/windef.h"
29 #include "libaf/af_format.h"
32 static const ad_info_t info
=
38 "Ported from MPlayerXP"
43 void* WINAPI
LoadLibraryA(char* name
);
44 void* WINAPI
GetProcAddress(void* handle
, char* func
);
45 int WINAPI
FreeLibrary(void* handle
);
47 static int (*TvqInitialize
)( headerInfo
*setupInfo
, INDEX
*index
, int dispErrorMessageBox
);
48 static void (*TvqTerminate
)( INDEX
*index
);
49 static void (*TvqGetVectorInfo
)(int *bits0
[], int *bits1
[]);
51 static void (*TvqDecodeFrame
)(INDEX
*indexp
, float out
[]);
52 static int (*TvqWtypeToBtype
)( int w_type
, int *btype
);
53 static void (*TvqUpdateVectorInfo
)(int varbits
, int *ndiv
, int bits0
[], int bits1
[]);
55 static int (*TvqCheckVersion
)(char *versionID
);
56 static void (*TvqGetConfInfo
)(tvqConfInfo
*cf
);
57 static int (*TvqGetFrameSize
)(void);
58 static int (*TvqGetNumFixedBitsPerFrame
)(void);
61 #define BBUFSIZ 1024 /* Bit buffer size (bytes) */
62 #define BBUFLEN (BBUFSIZ*BYTE_BIT) /* Bit buffer length (bits) */
63 typedef struct vqf_priv_s
66 WAVEFORMATEX o_wf
; // out format
70 int *bits_0
[N_INTR_TYPE
], *bits_1
[N_INTR_TYPE
];
74 int ptr
; /* current point in the bit buffer */
75 int nbuf
; /* bit buffer size */
76 char buf
[BBUFSIZ
]; /* the bit buffer */
82 static int load_dll( char *libname
)
87 vqf_dll
= LoadLibraryA(libname
);
90 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "failed loading dll\n" );
93 TvqInitialize
= GetProcAddress(vqf_dll
,"TvqInitialize");
94 TvqTerminate
= GetProcAddress(vqf_dll
,"TvqTerminate");
95 TvqGetVectorInfo
= GetProcAddress(vqf_dll
,"TvqGetVectorInfo");
96 TvqDecodeFrame
= GetProcAddress(vqf_dll
,"TvqDecodeFrame");
97 TvqWtypeToBtype
= GetProcAddress(vqf_dll
,"TvqWtypeToBtype");
98 TvqUpdateVectorInfo
= GetProcAddress(vqf_dll
,"TvqUpdateVectorInfo");
99 TvqCheckVersion
= GetProcAddress(vqf_dll
,"TvqCheckVersion");
100 TvqGetConfInfo
= GetProcAddress(vqf_dll
,"TvqGetConfInfo");
101 TvqGetFrameSize
= GetProcAddress(vqf_dll
,"TvqGetFrameSize");
102 TvqGetNumFixedBitsPerFrame
= GetProcAddress(vqf_dll
,"TvqGetNumFixedBitsPerFrame");
103 return TvqInitialize
&& TvqTerminate
&& TvqGetVectorInfo
&&
104 TvqDecodeFrame
&& TvqWtypeToBtype
&& TvqUpdateVectorInfo
&&
105 TvqCheckVersion
&& TvqGetConfInfo
&& TvqGetFrameSize
&&
106 TvqGetNumFixedBitsPerFrame
;
109 static int init_vqf_audio_codec(sh_audio_t
*sh_audio
){
110 WAVEFORMATEX
*in_fmt
=sh_audio
->wf
;
111 vqf_priv_t
*priv
=sh_audio
->context
;
113 mp_msg(MSGT_DECAUDIO
, MSGL_INFO
, "======= Win32 (TWinVQ) AUDIO Codec init =======\n");
115 sh_audio
->channels
=in_fmt
->nChannels
;
116 sh_audio
->samplerate
=in_fmt
->nSamplesPerSec
;
117 sh_audio
->sample_format
=AF_FORMAT_S16_NE
;
118 // sh_audio->sample_format=AF_FORMAT_FLOAT_NE;
119 sh_audio
->samplesize
=af_fmt2bits(sh_audio
->sample_format
)/8;
120 priv
->o_wf
.nChannels
=in_fmt
->nChannels
;
121 priv
->o_wf
.nSamplesPerSec
=in_fmt
->nSamplesPerSec
;
122 priv
->o_wf
.nBlockAlign
=sh_audio
->samplesize
*in_fmt
->nChannels
;
123 priv
->o_wf
.nAvgBytesPerSec
=in_fmt
->nBlockAlign
*in_fmt
->nChannels
;
124 priv
->o_wf
.wFormatTag
=0x01;
125 priv
->o_wf
.wBitsPerSample
=in_fmt
->wBitsPerSample
;
128 if( mp_msg_test(MSGT_DECAUDIO
,MSGL_V
) )
130 mp_msg(MSGT_DECAUDIO
, MSGL_V
, "Input format:\n");
131 print_wave_header(in_fmt
, MSGL_V
);
132 mp_msg(MSGT_DECAUDIO
, MSGL_V
, "Output fmt:\n");
133 print_wave_header(&priv
->o_wf
, MSGL_V
);
135 memcpy(&priv
->hi
,&in_fmt
[1],sizeof(headerInfo
));
136 if((ver
=TvqInitialize(&priv
->hi
,&priv
->index
,0))){
141 "Channel setting error",
143 "Inner parameter setting error",
144 "Wrong number of VQ pre-selection candidates, used only in encoder" };
145 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "Tvq initialization error: %s\n",ver
>=0&&ver
<7?tvqe
[ver
]:"Unknown");
148 ver
=TvqCheckVersion(priv
->hi
.ID
);
149 if(ver
==TVQ_UNKNOWN_VERSION
){
150 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "Tvq unknown version of stream\n" );
153 TvqGetConfInfo(&priv
->cf
);
154 TvqGetVectorInfo(priv
->bits_0
,priv
->bits_1
);
155 priv
->framesize
=TvqGetFrameSize();
156 sh_audio
->audio_in_minsize
=priv
->framesize
*in_fmt
->nChannels
;
157 sh_audio
->a_in_buffer_size
=4*sh_audio
->audio_in_minsize
;
158 sh_audio
->a_in_buffer
=av_malloc(sh_audio
->a_in_buffer_size
);
159 sh_audio
->a_in_buffer_len
=0;
165 static int close_vqf_audio_codec(sh_audio_t
*sh_audio
)
167 vqf_priv_t
*priv
=sh_audio
->context
;
168 TvqTerminate(&priv
->index
);
172 int init(sh_audio_t
*sh_audio
)
177 int preinit(sh_audio_t
*sh_audio
)
179 /* Win32 VQF audio codec: */
181 if(!(sh_audio
->context
=malloc(sizeof(vqf_priv_t
)))) return 0;
182 priv
=sh_audio
->context
;
183 if(!load_dll(sh_audio
->codec
->dll
))
185 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "win32.dll looks broken :(\n");
188 if(!init_vqf_audio_codec(sh_audio
)){
189 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "TWinVQ initialization fail\n");
192 mp_msg(MSGT_DECAUDIO
, MSGL_INFO
, "INFO: TWinVQ (%s) audio codec init OK!\n",sh_audio
->codec
->dll
);
197 void uninit(sh_audio_t
*sh
)
199 close_vqf_audio_codec(sh
);
201 FreeLibrary(vqf_dll
);
204 static int control(sh_audio_t
*sh_audio
,int cmd
,void* arg
, ...)
207 case ADCTRL_QUERY_FORMAT
:
210 return CONTROL_UNKNOWN
;
214 static int bread(char *data
, /* Output: Output data array */
215 int size
, /* Input: Length of each data */
216 int nbits
, /* Input: Number of bits to write */
217 sh_audio_t
*sh
) /* Input: File pointer */
219 /*--- Variables ---*/
220 int ibits
, iptr
, idata
, ibufadr
, ibufbit
, icl
;
221 unsigned char mask
, tmpdat
;
223 vqf_priv_t
*priv
=sh
->context
;
225 /*--- Main operation ---*/
228 for ( ibits
=0; ibits
<nbits
; ibits
++ ){
229 if ( priv
->readable
== 0 ){ /* when the file data buffer is empty */
230 priv
->nbuf
= demux_read_data(sh
->ds
, priv
->buf
, BBUFSIZ
);
234 iptr
= priv
->ptr
; /* current file data buffer pointer */
235 if ( iptr
>= priv
->nbuf
) /* If data file is empty then return */
237 ibufadr
= iptr
/BYTE_BIT
; /* current file data buffer address */
238 ibufbit
= iptr
%BYTE_BIT
; /* current file data buffer bit */
239 /* tmpdat = stream->buf[ibufadr] >> (BYTE_BIT-ibufbit-1); */
240 tmpdat
= (unsigned char)priv
->buf
[ibufadr
];
241 tmpdat
>>= (BYTE_BIT
-ibufbit
-1);
242 /* current data bit */
244 idata
= ibits
*size
; /* output data address */
245 data
[idata
] = (char)(tmpdat
& mask
); /* set output data */
246 for (icl
=1; icl
<size
; icl
++)
247 data
[idata
+icl
] = 0; /* clear the rest output data buffer */
248 priv
->ptr
+= 1; /* update data buffer pointer */
249 if (priv
->ptr
== BBUFLEN
){
258 #define BITS_INT (sizeof(int)*8)
260 static int get_bstm(int *data
, /* Input: input data */
261 unsigned nbits
, /* Input: number of bits */
262 sh_audio_t
*sh
) /* Input: bit file pointer */
267 char tmpbit
[BITS_INT
];
270 if ( nbits
> BITS_INT
){
271 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "get_bstm(): %d: %d Error.\n",
275 retval
= bread(tmpbit
, sizeof(*tmpbit
), nbits
, sh
);
276 for (ibit
=retval
; ibit
<nbits
; ibit
++){
279 mask
= 0x1<<(nbits
-1);
281 for ( ibit
=0; ibit
<nbits
; ibit
++ ){
282 work
+= mask
*tmpbit
[ibit
];
289 static int GetVqInfo( tvqConfInfoSubBlock
*cfg
,
299 if ( index
->btype
== BLK_LONG
){
300 TvqUpdateVectorInfo( variableBits
, &cfg
->ndiv
, bits0
, bits1
); // re-calculate VQ bits
302 for ( idiv
=0; idiv
<cfg
->ndiv
; idiv
++ ){
303 bitcount
+= get_bstm(&index
->wvq
[idiv
],bits0
[idiv
],sh
); /* CB 0 */
304 bitcount
+= get_bstm(&index
->wvq
[idiv
+cfg
->ndiv
],bits1
[idiv
],sh
); /* CB 1 */
309 static int GetBseInfo( tvqConfInfo
*cf
, tvqConfInfoSubBlock
*cfg
, INDEX
*index
, sh_audio_t
*sh
)
311 int i_sup
, isf
, itmp
, idiv
;
314 for ( i_sup
=0; i_sup
<cf
->N_CH
; i_sup
++ ){
315 for ( isf
=0; isf
<cfg
->nsf
; isf
++ ){
316 for ( idiv
=0; idiv
<cfg
->fw_ndiv
; idiv
++ ){
317 itmp
= idiv
+ ( isf
+ i_sup
* cfg
->nsf
) * cfg
->fw_ndiv
;
318 bitcount
+= get_bstm(&index
->fw
[itmp
],cfg
->fw_nbit
,sh
);
322 for ( i_sup
=0; i_sup
<cf
->N_CH
; i_sup
++ ){
323 for ( isf
=0; isf
<cfg
->nsf
; isf
++ ){
324 bitcount
+= get_bstm(&index
->fw_alf
[i_sup
* cfg
->nsf
+ isf
],cf
->FW_ARSW_BITS
,sh
);
330 static int GetGainInfo(tvqConfInfo
*cf
, tvqConfInfoSubBlock
*cfg
, INDEX
*index
, sh_audio_t
*sh
)
332 int i_sup
, iptop
, isf
;
335 for ( i_sup
=0; i_sup
<cf
->N_CH
; i_sup
++ ){
336 iptop
= ( cfg
->nsubg
+ 1 ) * i_sup
;
337 bitcount
+= get_bstm(&index
->pow
[iptop
], cf
->GAIN_BITS
,sh
);
338 for ( isf
=0; isf
<cfg
->nsubg
; isf
++ ){
339 bitcount
+= get_bstm(&index
->pow
[iptop
+isf
+1], cf
->SUB_GAIN_BITS
,sh
);
345 static int GetLspInfo( tvqConfInfo
*cf
, INDEX
*index
, sh_audio_t
*sh
)
350 for ( i_sup
=0; i_sup
<cf
->N_CH
; i_sup
++ ){
351 bitcount
+= get_bstm(&index
->lsp
[i_sup
][0], cf
->LSP_BIT0
,sh
); /* pred. switch */
352 bitcount
+= get_bstm(&index
->lsp
[i_sup
][1], cf
->LSP_BIT1
,sh
); /* first stage */
353 for ( itmp
=0; itmp
<cf
->LSP_SPLIT
; itmp
++ ){ /* second stage */
354 bitcount
+= get_bstm(&index
->lsp
[i_sup
][itmp
+2], cf
->LSP_BIT2
,sh
);
361 static int GetPpcInfo( tvqConfInfo
*cf
, INDEX
*index
, sh_audio_t
*sh
)
365 vqf_priv_t
*priv
=sh
->context
;
367 for ( idiv
=0; idiv
<cf
->N_DIV_P
; idiv
++ ){
368 bitcount
+= get_bstm(&(index
->pls
[idiv
]), priv
->bits_0
[BLK_PPC
][idiv
],sh
); /*CB0*/
369 bitcount
+= get_bstm(&(index
->pls
[idiv
+cf
->N_DIV_P
]), priv
->bits_1
[BLK_PPC
][idiv
],sh
);/*CB1*/
371 for (i_sup
=0; i_sup
<cf
->N_CH
; i_sup
++){
372 bitcount
+= get_bstm(&(index
->pit
[i_sup
]), cf
->BASF_BIT
,sh
);
373 bitcount
+= get_bstm(&(index
->pgain
[i_sup
]), cf
->PGAIN_BIT
,sh
);
379 static int GetEbcInfo( tvqConfInfo
*cf
, tvqConfInfoSubBlock
*cfg
, INDEX
*index
, sh_audio_t
*sh
)
381 int i_sup
, isf
, itmp
;
384 for ( i_sup
=0; i_sup
<cf
->N_CH
; i_sup
++ ){
385 for ( isf
=0; isf
<cfg
->nsf
; isf
++){
386 int indexSfOffset
= isf
* ( cfg
->ncrb
- cfg
->ebc_crb_base
) - cfg
->ebc_crb_base
;
387 for ( itmp
=cfg
->ebc_crb_base
; itmp
<cfg
->ncrb
; itmp
++ ){
388 bitcount
+= get_bstm(&index
->bc
[i_sup
][itmp
+indexSfOffset
], cfg
->ebc_bits
,sh
);
396 static int vqf_read_frame(sh_audio_t
*sh
,INDEX
*index
)
398 /*--- Variables ---*/
399 tvqConfInfoSubBlock
*cfg
;
402 int numFixedBitsPerFrame
= TvqGetNumFixedBitsPerFrame();
404 vqf_priv_t
*priv
=sh
->context
;
406 /*--- Initialization ---*/
410 /*--- read block independent factors ---*/
412 bitcount
+= get_bstm( &index
->w_type
, priv
->cf
.BITS_WTYPE
, sh
);
413 if ( TvqWtypeToBtype( index
->w_type
, &index
->btype
) ) {
414 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "Error: unknown window type: %d\n", index
->w_type
);
417 btype
= index
->btype
;
419 /*--- read block dependent factors ---*/
420 cfg
= &priv
->cf
.cfg
[btype
]; // set the block dependent paremeters table
422 bitcount
+= variableBits
;
424 /* Interleaved vector quantization */
425 bitcount
+= GetVqInfo( cfg
, priv
->bits_0
[btype
], priv
->bits_1
[btype
], variableBits
, index
, sh
);
427 /* Bark-scale envelope */
428 bitcount
+= GetBseInfo( &priv
->cf
, cfg
, index
, sh
);
430 bitcount
+= GetGainInfo( &priv
->cf
, cfg
, index
, sh
);
432 bitcount
+= GetLspInfo( &priv
->cf
, index
, sh
);
434 if ( cfg
->ppc_enable
){
435 bitcount
+= GetPpcInfo( &priv
->cf
, index
, sh
);
437 /* Energy Balance Calibration */
438 if ( cfg
->ebc_enable
){
439 bitcount
+= GetEbcInfo( &priv
->cf
, cfg
, index
, sh
);
442 return bitcount
== numFixedBitsPerFrame
? bitcount
/8 : 0;
445 static void frtobuf_s16(float out
[], /* Input --- input data frame */
446 short bufout
[], /* Output --- output data buffer array */
447 unsigned frameSize
, /* Input --- frame size */
448 unsigned numChannels
) /* Input --- number of channels */
450 /*--- Variables ---*/
455 for ( ich
=0; ich
<numChannels
; ich
++ ){
456 ptr
= out
+ich
*frameSize
;
457 for ( ismp
=0; ismp
<frameSize
; ismp
++ ){
462 bufout
[ismp
*numChannels
+ich
] = (short)(dtmp
+0.5);
464 if ( dtmp
< -32700. )
466 bufout
[ismp
*numChannels
+ich
] = (short)(dtmp
-0.5);
472 static void frtobuf_float(float out
[], /* Input --- input data frame */
473 float bufout
[], /* Output --- output data buffer array */
474 unsigned frameSize
, /* Input --- frame size */
475 unsigned numChannels
) /* Input --- number of channels */
477 /*--- Variables ---*/
482 for ( ich
=0; ich
<numChannels
; ich
++ ){
483 ptr
= out
+ich
*frameSize
;
484 for ( ismp
=0; ismp
<frameSize
; ismp
++ ){
489 bufout
[ismp
*numChannels
+ich
] = dtmp
/32767.;
491 if ( dtmp
< -32700. )
493 bufout
[ismp
*numChannels
+ich
] = dtmp
/32767.;
499 int decode_audio(sh_audio_t
*sh_audio
,unsigned char *buf
,int minlen
,int maxlen
)
502 vqf_priv_t
*priv
=sh_audio
->context
;
505 float out
[priv
->framesize
*sh_audio
->channels
];
506 l
=vqf_read_frame(sh_audio
,&priv
->index
);
508 TvqDecodeFrame(&priv
->index
, out
);
509 if (priv
->skip_cnt
) {
510 // Ingnore first two frames, replace them with silence
512 memset(buf
, 0, priv
->framesize
*sh_audio
->channels
*sh_audio
->samplesize
);
514 if (sh_audio
->sample_format
== AF_FORMAT_S16_NE
)
515 frtobuf_s16(out
, (short *)buf
, priv
->framesize
, sh_audio
->channels
);
517 frtobuf_float(out
, (float *)buf
, priv
->framesize
, sh_audio
->channels
);
519 len
+= priv
->framesize
*sh_audio
->channels
*sh_audio
->samplesize
;
520 buf
+= priv
->framesize
*sh_audio
->channels
*sh_audio
->samplesize
;