Silence permanent warning messages when decoding H264 over rtsp with
[mplayer.git] / libmpcodecs / ad_twin.c
blob823ace89dde2c113ade8a64565b62580472e7186
1 /*
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.
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include "config.h"
24 #include "ad_internal.h"
25 #include "vqf.h"
26 #include "libmpdemux/aviprint.h"
27 #include "loader/ldt_keeper.h"
28 #include "loader/wine/windef.h"
29 #include "libaf/af_format.h"
31 #include "help_mp.h"
33 static const ad_info_t info =
35 "TWinVQ decoder",
36 "vqf",
37 "Roberto Togni",
38 "Nick Kurshev",
39 "Ported from MPlayerXP"
42 LIBAD_EXTERN(twin)
44 void* WINAPI LoadLibraryA(char* name);
45 void* WINAPI GetProcAddress(void* handle, char* func);
46 int WINAPI FreeLibrary(void* handle);
48 static int (*TvqInitialize)( headerInfo *setupInfo, INDEX *index, int dispErrorMessageBox );
49 static void (*TvqTerminate)( INDEX *index );
50 static void (*TvqGetVectorInfo)(int *bits0[], int *bits1[]);
52 static void (*TvqDecodeFrame)(INDEX *indexp, float out[]);
53 static int (*TvqWtypeToBtype)( int w_type, int *btype );
54 static void (*TvqUpdateVectorInfo)(int varbits, int *ndiv, int bits0[], int bits1[]);
56 static int (*TvqCheckVersion)(char *versionID);
57 static void (*TvqGetConfInfo)(tvqConfInfo *cf);
58 static int (*TvqGetFrameSize)();
59 static int (*TvqGetNumFixedBitsPerFrame)();
61 #define BYTE_BIT 8
62 #define BBUFSIZ 1024 /* Bit buffer size (bytes) */
63 #define BBUFLEN (BBUFSIZ*BYTE_BIT) /* Bit buffer length (bits) */
64 typedef struct vqf_priv_s
66 float pts;
67 WAVEFORMATEX o_wf; // out format
68 INDEX index;
69 tvqConfInfo cf;
70 headerInfo hi;
71 int *bits_0[N_INTR_TYPE], *bits_1[N_INTR_TYPE];
72 unsigned framesize;
73 /* stream related */
74 int readable;
75 int ptr; /* current point in the bit buffer */
76 int nbuf; /* bit buffer size */
77 char buf[BBUFSIZ]; /* the bit buffer */
78 int skip_cnt;
79 }vqf_priv_t;
81 static void* vqf_dll;
83 static int load_dll( char *libname )
85 #ifdef WIN32_LOADER
86 Setup_LDT_Keeper();
87 #endif
88 vqf_dll = LoadLibraryA(libname);
89 if( vqf_dll == NULL )
91 mp_msg(MSGT_DECAUDIO, MSGL_ERR, "failed loading dll\n" );
92 return 0;
94 TvqInitialize = GetProcAddress(vqf_dll,"TvqInitialize");
95 TvqTerminate = GetProcAddress(vqf_dll,"TvqTerminate");
96 TvqGetVectorInfo = GetProcAddress(vqf_dll,"TvqGetVectorInfo");
97 TvqDecodeFrame = GetProcAddress(vqf_dll,"TvqDecodeFrame");
98 TvqWtypeToBtype = GetProcAddress(vqf_dll,"TvqWtypeToBtype");
99 TvqUpdateVectorInfo = GetProcAddress(vqf_dll,"TvqUpdateVectorInfo");
100 TvqCheckVersion = GetProcAddress(vqf_dll,"TvqCheckVersion");
101 TvqGetConfInfo = GetProcAddress(vqf_dll,"TvqGetConfInfo");
102 TvqGetFrameSize = GetProcAddress(vqf_dll,"TvqGetFrameSize");
103 TvqGetNumFixedBitsPerFrame = GetProcAddress(vqf_dll,"TvqGetNumFixedBitsPerFrame");
104 return TvqInitialize && TvqTerminate && TvqGetVectorInfo &&
105 TvqDecodeFrame && TvqWtypeToBtype && TvqUpdateVectorInfo &&
106 TvqCheckVersion && TvqGetConfInfo && TvqGetFrameSize &&
107 TvqGetNumFixedBitsPerFrame;
110 static int init_vqf_audio_codec(sh_audio_t *sh_audio){
111 WAVEFORMATEX *in_fmt=sh_audio->wf;
112 vqf_priv_t*priv=sh_audio->context;
113 int ver;
114 mp_msg(MSGT_DECAUDIO, MSGL_INFO, "======= Win32 (TWinVQ) AUDIO Codec init =======\n");
116 sh_audio->channels=in_fmt->nChannels;
117 sh_audio->samplerate=in_fmt->nSamplesPerSec;
118 sh_audio->sample_format=AF_FORMAT_S16_NE;
119 // sh_audio->sample_format=AF_FORMAT_FLOAT_NE;
120 sh_audio->samplesize=af_fmt2bits(sh_audio->sample_format)/8;
121 priv->o_wf.nChannels=in_fmt->nChannels;
122 priv->o_wf.nSamplesPerSec=in_fmt->nSamplesPerSec;
123 priv->o_wf.nBlockAlign=sh_audio->samplesize*in_fmt->nChannels;
124 priv->o_wf.nAvgBytesPerSec=in_fmt->nBlockAlign*in_fmt->nChannels;
125 priv->o_wf.wFormatTag=0x01;
126 priv->o_wf.wBitsPerSample=in_fmt->wBitsPerSample;
127 priv->o_wf.cbSize=0;
129 if( mp_msg_test(MSGT_DECAUDIO,MSGL_V) )
131 mp_msg(MSGT_DECAUDIO, MSGL_V, "Input format:\n");
132 print_wave_header(in_fmt, MSGL_V);
133 mp_msg(MSGT_DECAUDIO, MSGL_V, "Output fmt:\n");
134 print_wave_header(&priv->o_wf, MSGL_V);
136 memcpy(&priv->hi,&in_fmt[1],sizeof(headerInfo));
137 if((ver=TvqInitialize(&priv->hi,&priv->index,0))){
138 const char *tvqe[]={
139 "No errors",
140 "General error",
141 "Wrong version",
142 "Channel setting error",
143 "Wrong coding mode",
144 "Inner parameter setting error",
145 "Wrong number of VQ pre-selection candidates, used only in encoder" };
146 mp_msg(MSGT_DECAUDIO, MSGL_ERR, "Tvq initialization error: %s\n",ver>=0&&ver<7?tvqe[ver]:"Unknown");
147 return 0;
149 ver=TvqCheckVersion(priv->hi.ID);
150 if(ver==TVQ_UNKNOWN_VERSION){
151 mp_msg(MSGT_DECAUDIO, MSGL_ERR, "Tvq unknown version of stream\n" );
152 return 0;
154 TvqGetConfInfo(&priv->cf);
155 TvqGetVectorInfo(priv->bits_0,priv->bits_1);
156 priv->framesize=TvqGetFrameSize();
157 sh_audio->audio_in_minsize=priv->framesize*in_fmt->nChannels;
158 sh_audio->a_in_buffer_size=4*sh_audio->audio_in_minsize;
159 sh_audio->a_in_buffer=av_malloc(sh_audio->a_in_buffer_size);
160 sh_audio->a_in_buffer_len=0;
163 return 1;
166 static int close_vqf_audio_codec(sh_audio_t *sh_audio)
168 vqf_priv_t*priv=sh_audio->context;
169 TvqTerminate(&priv->index);
170 return 1;
173 int init(sh_audio_t *sh_audio)
175 return 1;
178 int preinit(sh_audio_t *sh_audio)
180 /* Win32 VQF audio codec: */
181 vqf_priv_t *priv;
182 if(!(sh_audio->context=malloc(sizeof(vqf_priv_t)))) return 0;
183 priv=sh_audio->context;
184 if(!load_dll(sh_audio->codec->dll))
186 mp_msg(MSGT_DECAUDIO, MSGL_ERR, "win32.dll looks broken :(\n");
187 return 0;
189 if(!init_vqf_audio_codec(sh_audio)){
190 mp_msg(MSGT_DECAUDIO, MSGL_ERR, "TWinVQ initialization fail\n");
191 return 0;
193 mp_msg(MSGT_DECAUDIO, MSGL_INFO, "INFO: TWinVQ (%s) audio codec init OK!\n",sh_audio->codec->dll);
194 priv->skip_cnt = 2;
195 return 1;
198 void uninit(sh_audio_t *sh)
200 close_vqf_audio_codec(sh);
201 free(sh->context);
202 FreeLibrary(vqf_dll);
205 static int control(sh_audio_t *sh_audio,int cmd,void* arg, ...)
207 switch(cmd) {
208 case ADCTRL_QUERY_FORMAT:
209 return CONTROL_TRUE;
210 default:
211 return CONTROL_UNKNOWN;
215 static int bread(char *data, /* Output: Output data array */
216 int size, /* Input: Length of each data */
217 int nbits, /* Input: Number of bits to write */
218 sh_audio_t *sh) /* Input: File pointer */
220 /*--- Variables ---*/
221 int ibits, iptr, idata, ibufadr, ibufbit, icl;
222 unsigned char mask, tmpdat;
223 int retval;
224 vqf_priv_t *priv=sh->context;
226 /*--- Main operation ---*/
227 retval = 0;
228 mask = 0x1;
229 for ( ibits=0; ibits<nbits; ibits++ ){
230 if ( priv->readable == 0 ){ /* when the file data buffer is empty */
231 priv->nbuf = demux_read_data(sh->ds, priv->buf, BBUFSIZ);
232 priv->nbuf *= 8;
233 priv->readable = 1;
235 iptr = priv->ptr; /* current file data buffer pointer */
236 if ( iptr >= priv->nbuf ) /* If data file is empty then return */
237 return retval;
238 ibufadr = iptr/BYTE_BIT; /* current file data buffer address */
239 ibufbit = iptr%BYTE_BIT; /* current file data buffer bit */
240 /* tmpdat = stream->buf[ibufadr] >> (BYTE_BIT-ibufbit-1); */
241 tmpdat = (unsigned char)priv->buf[ibufadr];
242 tmpdat >>= (BYTE_BIT-ibufbit-1);
243 /* current data bit */
245 idata = ibits*size; /* output data address */
246 data[idata] = (char)(tmpdat & mask); /* set output data */
247 for (icl=1; icl<size; icl++)
248 data[idata+icl] = 0; /* clear the rest output data buffer */
249 priv->ptr += 1; /* update data buffer pointer */
250 if (priv->ptr == BBUFLEN){
251 priv->ptr = 0;
252 priv->readable = 0;
254 ++retval;
256 return retval;
259 #define BITS_INT (sizeof(int)*8)
261 static int get_bstm(int *data, /* Input: input data */
262 unsigned nbits, /* Input: number of bits */
263 sh_audio_t *sh) /* Input: bit file pointer */
265 unsigned ibit;
266 unsigned mask;
267 unsigned work;
268 char tmpbit[BITS_INT];
269 int retval;
271 if ( nbits > BITS_INT ){
272 mp_msg(MSGT_DECAUDIO, MSGL_ERR, "get_bstm(): %d: %d Error.\n",
273 nbits, BITS_INT);
274 exit(1);
276 retval = bread(tmpbit, sizeof(*tmpbit), nbits, sh);
277 for (ibit=retval; ibit<nbits; ibit++){
278 tmpbit[ibit] = 0;
280 mask = 0x1<<(nbits-1);
281 work=0;
282 for ( ibit=0; ibit<nbits; ibit++ ){
283 work += mask*tmpbit[ibit];
284 mask >>= 1;
286 *data = work;
287 return retval;
290 static int GetVqInfo( tvqConfInfoSubBlock *cfg,
291 int bits0[],
292 int bits1[],
293 int variableBits,
294 INDEX *index,
295 sh_audio_t *sh)
297 int idiv;
298 int bitcount = 0;
300 if ( index->btype == BLK_LONG ){
301 TvqUpdateVectorInfo( variableBits, &cfg->ndiv, bits0, bits1 ); // re-calculate VQ bits
303 for ( idiv=0; idiv<cfg->ndiv; idiv++ ){
304 bitcount += get_bstm(&index->wvq[idiv],bits0[idiv],sh); /* CB 0 */
305 bitcount += get_bstm(&index->wvq[idiv+cfg->ndiv],bits1[idiv],sh); /* CB 1 */
307 return bitcount;
310 static int GetBseInfo( tvqConfInfo *cf, tvqConfInfoSubBlock *cfg, INDEX *index, sh_audio_t *sh)
312 int i_sup, isf, itmp, idiv;
313 int bitcount = 0;
315 for ( i_sup=0; i_sup<cf->N_CH; i_sup++ ){
316 for ( isf=0; isf<cfg->nsf; isf++ ){
317 for ( idiv=0; idiv<cfg->fw_ndiv; idiv++ ){
318 itmp = idiv + ( isf + i_sup * cfg->nsf ) * cfg->fw_ndiv;
319 bitcount += get_bstm(&index->fw[itmp],cfg->fw_nbit,sh);
323 for ( i_sup=0; i_sup<cf->N_CH; i_sup++ ){
324 for ( isf=0; isf<cfg->nsf; isf++ ){
325 bitcount += get_bstm(&index->fw_alf[i_sup * cfg->nsf + isf],cf->FW_ARSW_BITS,sh);
328 return bitcount;
331 static int GetGainInfo(tvqConfInfo *cf, tvqConfInfoSubBlock *cfg, INDEX *index, sh_audio_t *sh )
333 int i_sup, iptop, isf;
334 int bitcount = 0;
336 for ( i_sup=0; i_sup<cf->N_CH; i_sup++ ){
337 iptop = ( cfg->nsubg + 1 ) * i_sup;
338 bitcount += get_bstm(&index->pow[iptop], cf->GAIN_BITS,sh);
339 for ( isf=0; isf<cfg->nsubg; isf++ ){
340 bitcount += get_bstm(&index->pow[iptop+isf+1], cf->SUB_GAIN_BITS,sh);
343 return bitcount;
346 static int GetLspInfo( tvqConfInfo *cf, INDEX *index, sh_audio_t *sh )
348 int i_sup, itmp;
349 int bitcount = 0;
351 for ( i_sup=0; i_sup<cf->N_CH; i_sup++ ){
352 bitcount += get_bstm(&index->lsp[i_sup][0], cf->LSP_BIT0,sh); /* pred. switch */
353 bitcount += get_bstm(&index->lsp[i_sup][1], cf->LSP_BIT1,sh); /* first stage */
354 for ( itmp=0; itmp<cf->LSP_SPLIT; itmp++ ){ /* second stage */
355 bitcount += get_bstm(&index->lsp[i_sup][itmp+2], cf->LSP_BIT2,sh);
359 return bitcount;
362 static int GetPpcInfo( tvqConfInfo *cf, INDEX *index, sh_audio_t *sh)
364 int idiv, i_sup;
365 int bitcount = 0;
366 vqf_priv_t*priv=sh->context;
368 for ( idiv=0; idiv<cf->N_DIV_P; idiv++ ){
369 bitcount += get_bstm(&(index->pls[idiv]), priv->bits_0[BLK_PPC][idiv],sh); /*CB0*/
370 bitcount += get_bstm(&(index->pls[idiv+cf->N_DIV_P]), priv->bits_1[BLK_PPC][idiv],sh);/*CB1*/
372 for (i_sup=0; i_sup<cf->N_CH; i_sup++){
373 bitcount += get_bstm(&(index->pit[i_sup]), cf->BASF_BIT,sh);
374 bitcount += get_bstm(&(index->pgain[i_sup]), cf->PGAIN_BIT,sh);
377 return bitcount;
380 static int GetEbcInfo( tvqConfInfo *cf, tvqConfInfoSubBlock *cfg, INDEX *index, sh_audio_t *sh)
382 int i_sup, isf, itmp;
383 int bitcount = 0;
385 for ( i_sup=0; i_sup<cf->N_CH; i_sup++ ){
386 for ( isf=0; isf<cfg->nsf; isf++){
387 int indexSfOffset = isf * ( cfg->ncrb - cfg->ebc_crb_base ) - cfg->ebc_crb_base;
388 for ( itmp=cfg->ebc_crb_base; itmp<cfg->ncrb; itmp++ ){
389 bitcount += get_bstm(&index->bc[i_sup][itmp+indexSfOffset], cfg->ebc_bits,sh);
394 return bitcount;
397 static int vqf_read_frame(sh_audio_t *sh,INDEX *index)
399 /*--- Variables ---*/
400 tvqConfInfoSubBlock *cfg;
401 int variableBits;
402 int bitcount;
403 int numFixedBitsPerFrame = TvqGetNumFixedBitsPerFrame();
404 int btype;
405 vqf_priv_t *priv=sh->context;
407 /*--- Initialization ---*/
408 variableBits = 0;
409 bitcount = 0;
411 /*--- read block independent factors ---*/
412 /* Window type */
413 bitcount += get_bstm( &index->w_type, priv->cf.BITS_WTYPE, sh );
414 if ( TvqWtypeToBtype( index->w_type, &index->btype ) ) {
415 mp_msg(MSGT_DECAUDIO, MSGL_ERR, "Error: unknown window type: %d\n", index->w_type);
416 return 0;
418 btype = index->btype;
420 /*--- read block dependent factors ---*/
421 cfg = &priv->cf.cfg[btype]; // set the block dependent paremeters table
423 bitcount += variableBits;
425 /* Interleaved vector quantization */
426 bitcount += GetVqInfo( cfg, priv->bits_0[btype], priv->bits_1[btype], variableBits, index, sh );
428 /* Bark-scale envelope */
429 bitcount += GetBseInfo( &priv->cf, cfg, index, sh );
430 /* Gain */
431 bitcount += GetGainInfo( &priv->cf, cfg, index, sh );
432 /* LSP */
433 bitcount += GetLspInfo( &priv->cf, index, sh );
434 /* PPC */
435 if ( cfg->ppc_enable ){
436 bitcount += GetPpcInfo( &priv->cf, index, sh );
438 /* Energy Balance Calibration */
439 if ( cfg->ebc_enable ){
440 bitcount += GetEbcInfo( &priv->cf, cfg, index, sh );
443 return bitcount == numFixedBitsPerFrame ? bitcount/8 : 0;
446 static void frtobuf_s16(float out[], /* Input --- input data frame */
447 short bufout[], /* Output --- output data buffer array */
448 unsigned frameSize, /* Input --- frame size */
449 unsigned numChannels) /* Input --- number of channels */
451 /*--- Variables ---*/
452 unsigned ismp, ich;
453 float *ptr;
454 float dtmp;
456 for ( ich=0; ich<numChannels; ich++ ){
457 ptr = out+ich*frameSize;
458 for ( ismp=0; ismp<frameSize; ismp++ ){
459 dtmp = ptr[ismp];
460 if ( dtmp >= 0. ) {
461 if ( dtmp > 32700. )
462 dtmp = 32700.;
463 bufout[ismp*numChannels+ich] = (short)(dtmp+0.5);
464 } else {
465 if ( dtmp < -32700. )
466 dtmp = -32700.;
467 bufout[ismp*numChannels+ich] = (short)(dtmp-0.5);
473 static void frtobuf_float(float out[], /* Input --- input data frame */
474 float bufout[], /* Output --- output data buffer array */
475 unsigned frameSize, /* Input --- frame size */
476 unsigned numChannels) /* Input --- number of channels */
478 /*--- Variables ---*/
479 unsigned ismp, ich;
480 float *ptr;
481 float dtmp;
483 for ( ich=0; ich<numChannels; ich++ ){
484 ptr = out+ich*frameSize;
485 for ( ismp=0; ismp<frameSize; ismp++ ){
486 dtmp = ptr[ismp];
487 if ( dtmp >= 0. ) {
488 if ( dtmp > 32700. )
489 dtmp = 32700.;
490 bufout[ismp*numChannels+ich] = dtmp/32767.;
491 } else {
492 if ( dtmp < -32700. )
493 dtmp = -32700.;
494 bufout[ismp*numChannels+ich] = dtmp/32767.;
500 int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int maxlen)
502 int l, len=0;
503 vqf_priv_t *priv=sh_audio->context;
504 while(len<minlen)
506 float out[priv->framesize*sh_audio->channels];
507 l=vqf_read_frame(sh_audio,&priv->index);
508 if(!l) break;
509 TvqDecodeFrame(&priv->index, out);
510 if (priv->skip_cnt) {
511 // Ingnore first two frames, replace them with silence
512 priv->skip_cnt--;
513 memset(buf, 0, priv->framesize*sh_audio->channels*sh_audio->samplesize);
514 } else {
515 if (sh_audio->sample_format == AF_FORMAT_S16_NE)
516 frtobuf_s16(out, (short *)buf, priv->framesize, sh_audio->channels);
517 else
518 frtobuf_float(out, (float *)buf, priv->framesize, sh_audio->channels);
520 len += priv->framesize*sh_audio->channels*sh_audio->samplesize;
521 buf += priv->framesize*sh_audio->channels*sh_audio->samplesize;
523 return len;