Mercurial > mplayer.hg
annotate libmpcodecs/ad_dmo.c @ 31799:fe2e3c755706
Use mp_a52_framesize() in all cases; gets rid of liba52 dependency.
Blessed by Nico Sabbi.
author | diego |
---|---|
date | Sat, 31 Jul 2010 16:15:36 +0000 |
parents | cc27da5d7286 |
children | 9986a61354e6 |
rev | line source |
---|---|
30421
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
1 /* |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
2 * This file is part of MPlayer. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
3 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
7 * (at your option) any later version. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
8 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
12 * GNU General Public License for more details. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
13 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
17 */ |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
18 |
8326 | 19 #include <stdio.h> |
20 #include <stdlib.h> | |
21 #include <unistd.h> | |
22 | |
23 #include "config.h" | |
24 #include "mp_msg.h" | |
25 #include "help_mp.h" | |
26 | |
27 #include "ad_internal.h" | |
25315
dfa8a510c81c
Fix all current known multi-channel wrong order problems by adding
ulion
parents:
23918
diff
changeset
|
28 #include "libaf/reorder_ch.h" |
8326 | 29 |
30504
cc27da5d7286
Mark all ad_info_t/vd_info_t structure declarations as const.
diego
parents:
30421
diff
changeset
|
30 static const ad_info_t info = |
8326 | 31 { |
8327 | 32 "Win32/DMO decoders", |
8326 | 33 "dmo", |
34 "A'rpi", | |
35 "avifile.sf.net", | |
36 "" | |
37 }; | |
38 | |
39 LIBAD_EXTERN(dmo) | |
40 | |
22577
a033e5519802
Include loader/ prefix in #include path everywhere.
diego
parents:
18765
diff
changeset
|
41 #include "loader/dmo/DMO_AudioDecoder.h" |
8326 | 42 |
43 static int init(sh_audio_t *sh) | |
44 { | |
45 return 1; | |
46 } | |
47 | |
48 static int preinit(sh_audio_t *sh_audio) | |
49 { | |
50 DMO_AudioDecoder* ds_adec; | |
51 int chans=(audio_output_channels==sh_audio->wf->nChannels) ? | |
52 audio_output_channels : (sh_audio->wf->nChannels>=2 ? 2 : 1); | |
53 if(!(ds_adec=DMO_AudioDecoder_Open(sh_audio->codec->dll,&sh_audio->codec->guid,sh_audio->wf,chans))) | |
54 { | |
55 mp_msg(MSGT_DECAUDIO,MSGL_ERR,MSGTR_MissingDLLcodec,sh_audio->codec->dll); | |
56 return 0; | |
57 } | |
58 sh_audio->i_bps=sh_audio->wf->nAvgBytesPerSec; | |
59 sh_audio->channels=chans; | |
60 sh_audio->samplerate=sh_audio->wf->nSamplesPerSec; | |
13427
9d0b052c4f74
setting samplesize to 2 in decoders where neccessary.
reimar
parents:
8327
diff
changeset
|
61 sh_audio->samplesize=2; |
8326 | 62 sh_audio->audio_in_minsize=4*sh_audio->wf->nBlockAlign; |
63 if(sh_audio->audio_in_minsize<8192) sh_audio->audio_in_minsize=8192; | |
64 sh_audio->audio_out_minsize=4*16384; | |
65 sh_audio->context = ds_adec; | |
66 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: Win32/DMO audio codec init OK!\n"); | |
67 return 1; | |
68 } | |
69 | |
70 static void uninit(sh_audio_t *sh) | |
71 { | |
72 DMO_AudioDecoder* ds_adec = sh->context; | |
73 DMO_AudioDecoder_Destroy(ds_adec); | |
74 } | |
75 | |
76 static int control(sh_audio_t *sh_audio,int cmd,void* arg, ...) | |
77 { | |
78 int skip; | |
79 switch(cmd) | |
80 { | |
81 case ADCTRL_SKIP_FRAME: | |
82 skip=sh_audio->wf->nBlockAlign; | |
83 if(skip<16){ | |
84 skip=(sh_audio->wf->nAvgBytesPerSec/16)&(~7); | |
85 if(skip<16) skip=16; | |
86 } | |
87 demux_read_data(sh_audio->ds,NULL,skip); | |
88 return CONTROL_TRUE; | |
89 } | |
90 return CONTROL_UNKNOWN; | |
91 } | |
92 | |
93 static int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int maxlen) | |
94 { | |
95 DMO_AudioDecoder* ds_adec = sh_audio->context; | |
96 // int len=-1; | |
97 int size_in=0; | |
98 int size_out=0; | |
99 int srcsize=DMO_AudioDecoder_GetSrcSize(ds_adec, maxlen); | |
100 mp_msg(MSGT_DECAUDIO,MSGL_DBG3,"DMO says: srcsize=%d (buffsize=%d) out_size=%d\n",srcsize,sh_audio->a_in_buffer_size,maxlen); | |
101 if(srcsize>sh_audio->a_in_buffer_size) srcsize=sh_audio->a_in_buffer_size; // !!!!!! | |
102 if(sh_audio->a_in_buffer_len<srcsize){ | |
103 sh_audio->a_in_buffer_len+= | |
104 demux_read_data(sh_audio->ds,&sh_audio->a_in_buffer[sh_audio->a_in_buffer_len], | |
105 srcsize-sh_audio->a_in_buffer_len); | |
106 } | |
107 DMO_AudioDecoder_Convert(ds_adec, sh_audio->a_in_buffer,sh_audio->a_in_buffer_len, | |
108 buf,maxlen, &size_in,&size_out); | |
109 mp_dbg(MSGT_DECAUDIO,MSGL_DBG2,"DMO: audio %d -> %d converted (in_buf_len=%d of %d) %d\n",size_in,size_out,sh_audio->a_in_buffer_len,sh_audio->a_in_buffer_size,ds_tell_pts(sh_audio->ds)); | |
110 if(size_in>=sh_audio->a_in_buffer_len){ | |
111 sh_audio->a_in_buffer_len=0; | |
112 } else { | |
113 sh_audio->a_in_buffer_len-=size_in; | |
15552
7867e143a557
Use memmove instead of memcpy for overlapping areas.
reimar
parents:
13427
diff
changeset
|
114 memmove(sh_audio->a_in_buffer,&sh_audio->a_in_buffer[size_in],sh_audio->a_in_buffer_len); |
8326 | 115 } |
25315
dfa8a510c81c
Fix all current known multi-channel wrong order problems by adding
ulion
parents:
23918
diff
changeset
|
116 if (size_out > 0 && sh_audio->channels >= 5) { |
dfa8a510c81c
Fix all current known multi-channel wrong order problems by adding
ulion
parents:
23918
diff
changeset
|
117 reorder_channel_nch(buf, AF_CHANNEL_LAYOUT_WAVEEX_DEFAULT, |
dfa8a510c81c
Fix all current known multi-channel wrong order problems by adding
ulion
parents:
23918
diff
changeset
|
118 AF_CHANNEL_LAYOUT_MPLAYER_DEFAULT, |
dfa8a510c81c
Fix all current known multi-channel wrong order problems by adding
ulion
parents:
23918
diff
changeset
|
119 sh_audio->channels, |
dfa8a510c81c
Fix all current known multi-channel wrong order problems by adding
ulion
parents:
23918
diff
changeset
|
120 size_out / sh_audio->samplesize, |
dfa8a510c81c
Fix all current known multi-channel wrong order problems by adding
ulion
parents:
23918
diff
changeset
|
121 sh_audio->samplesize); |
dfa8a510c81c
Fix all current known multi-channel wrong order problems by adding
ulion
parents:
23918
diff
changeset
|
122 } |
8326 | 123 // len=size_out; |
124 return size_out; | |
125 } |