Mercurial > mplayer.hg
annotate libmpdemux/demux_audio.c @ 9510:b4ac94a31a56
typo
author | diego |
---|---|
date | Fri, 28 Feb 2003 14:07:56 +0000 |
parents | a93461f7e5ef |
children | 3904b95fce8f |
rev | line source |
---|---|
4694 | 1 |
2 #include "config.h" | |
4712 | 3 #include "../mp_msg.h" |
4694 | 4 |
5 #include <stdlib.h> | |
6 #include <stdio.h> | |
7 #include "stream.h" | |
8 #include "demuxer.h" | |
9 #include "stheader.h" | |
10 #include "genres.h" | |
6763 | 11 #include "mp3_hdr.h" |
4694 | 12 |
13 #include <string.h> | |
14 #ifdef MP_DEBUG | |
15 #include <assert.h> | |
16 #endif | |
17 | |
18 #define MP3 1 | |
19 #define WAV 2 | |
20 | |
21 | |
22 #define HDR_SIZE 4 | |
23 | |
24 typedef struct da_priv { | |
25 int frmt; | |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
26 float last_pts; |
4694 | 27 } da_priv_t; |
28 | |
29 extern void free_sh_audio(sh_audio_t* sh); | |
4700
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
30 extern void resync_audio_stream(sh_audio_t *sh_audio); |
8123
9fc45fe0d444
*HUGE* set of compiler warning fixes, unused variables removal
arpi
parents:
8116
diff
changeset
|
31 extern void print_wave_header(WAVEFORMATEX *h); |
4694 | 32 |
7867 | 33 int hr_mp3_seek = 0; |
4694 | 34 |
35 int demux_audio_open(demuxer_t* demuxer) { | |
36 stream_t *s; | |
37 sh_audio_t* sh_audio; | |
38 uint8_t hdr[HDR_SIZE]; | |
6763 | 39 int st_pos = 0,frmt = 0, n = 0, pos = 0, step, mp3_freq,mp3_chans; |
4694 | 40 da_priv_t* priv; |
41 #ifdef MP_DEBUG | |
42 assert(demuxer != NULL); | |
43 assert(demuxer->stream != NULL); | |
44 #endif | |
45 | |
46 s = demuxer->stream; | |
47 | |
48 while(n < 5 && ! s->eof) { | |
49 st_pos = stream_tell(s); | |
50 step = 1; | |
51 if(pos < HDR_SIZE) { | |
52 stream_read(s,&hdr[pos],HDR_SIZE-pos); | |
53 pos = HDR_SIZE; | |
54 } | |
55 | |
56 if( hdr[0] == 'R' && hdr[1] == 'I' && hdr[2] == 'F' && hdr[3] == 'F' ) { | |
57 stream_skip(s,4); | |
58 if(s->eof) | |
59 break; | |
60 stream_read(s,hdr,4); | |
61 if(s->eof) | |
62 break; | |
63 if(hdr[0] != 'W' || hdr[1] != 'A' || hdr[2] != 'V' || hdr[3] != 'E' ) | |
64 stream_skip(s,-8); | |
65 else | |
66 // We found wav header. Now we can have 'fmt ' or a mp3 header | |
67 // empty the buffer | |
68 step = 4; | |
8116 | 69 } else if( hdr[0] == 'I' && hdr[1] == 'D' && hdr[2] == '3' && (hdr[3] >= 2)) { |
70 int len; | |
71 stream_skip(s,2); | |
72 stream_read(s,hdr,4); | |
73 len = (hdr[0]<<21) | (hdr[1]<<14) | (hdr[2]<<7) | hdr[3]; | |
74 stream_skip(s,len); | |
75 step = 4; | |
4694 | 76 } else if( hdr[0] == 'f' && hdr[1] == 'm' && hdr[2] == 't' && hdr[3] == ' ' ) { |
77 frmt = WAV; | |
78 break; | |
6763 | 79 } else if((n = mp_get_mp3_header(hdr,&mp3_chans,&mp3_freq)) > 0) { |
4694 | 80 frmt = MP3; |
81 break; | |
82 } | |
83 // Add here some other audio format detection | |
84 if(step < HDR_SIZE) | |
85 memmove(hdr,&hdr[step],HDR_SIZE-step); | |
86 pos -= step; | |
87 } | |
88 | |
89 if(!frmt) | |
90 return 0; | |
91 | |
92 sh_audio = new_sh_audio(demuxer,0); | |
93 | |
94 switch(frmt) { | |
95 case MP3: | |
96 sh_audio->format = 0x55; | |
4717
b7054dadd2c0
We should skip exactly the first frame on mp3 files.
albeu
parents:
4712
diff
changeset
|
97 demuxer->movi_start = st_pos-HDR_SIZE+n; |
6763 | 98 sh_audio->audio.dwSampleSize= 0; |
99 sh_audio->audio.dwScale = 1152; | |
100 sh_audio->audio.dwRate = mp3_freq; | |
101 sh_audio->wf = malloc(sizeof(WAVEFORMATEX)); | |
102 sh_audio->wf->wFormatTag = sh_audio->format; | |
103 sh_audio->wf->nChannels = mp3_chans; | |
104 sh_audio->wf->nSamplesPerSec = mp3_freq; | |
8110 | 105 sh_audio->wf->nBlockAlign = 1152; |
6763 | 106 sh_audio->wf->wBitsPerSample = 16; |
107 sh_audio->wf->cbSize = 0; | |
4700
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
108 for(n = 0; n < 5 ; n++) { |
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
109 pos = mp_decode_mp3_header(hdr); |
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
110 if(pos < 0) |
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
111 return 0; |
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
112 stream_skip(s,pos-4); |
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
113 if(s->eof) |
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
114 return 0; |
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
115 stream_read(s,hdr,4); |
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
116 if(s->eof) |
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
117 return 0; |
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
118 } |
4694 | 119 if(s->end_pos) { |
120 char tag[4]; | |
121 stream_seek(s,s->end_pos-128); | |
122 stream_read(s,tag,3); | |
123 tag[3] = '\0'; | |
124 if(strcmp(tag,"TAG")) | |
125 demuxer->movi_end = s->end_pos; | |
126 else { | |
127 char buf[31]; | |
128 uint8_t g; | |
129 demuxer->movi_end = stream_tell(s)-3; | |
130 stream_read(s,buf,30); | |
131 buf[30] = '\0'; | |
132 demux_info_add(demuxer,"Title",buf); | |
133 stream_read(s,buf,30); | |
134 buf[30] = '\0'; | |
135 demux_info_add(demuxer,"Artist",buf); | |
136 stream_read(s,buf,30); | |
137 buf[30] = '\0'; | |
138 demux_info_add(demuxer,"Album",buf); | |
139 stream_read(s,buf,4); | |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
140 buf[4] = '\0'; |
4694 | 141 demux_info_add(demuxer,"Year",buf); |
142 stream_read(s,buf,30); | |
143 buf[30] = '\0'; | |
144 demux_info_add(demuxer,"Comment",buf); | |
145 if(buf[28] == 0 && buf[29] != 0) { | |
146 uint8_t trk = (uint8_t)buf[29]; | |
147 sprintf(buf,"%d",trk); | |
148 demux_info_add(demuxer,"Track",buf); | |
149 } | |
150 g = stream_read_char(s); | |
151 demux_info_add(demuxer,"Genre",genres[g]); | |
152 } | |
153 } | |
154 break; | |
155 case WAV: { | |
4720
10ad330c1733
fixed WAV demuxer so that it skips to the actual start of the audio data
melanson
parents:
4717
diff
changeset
|
156 unsigned int chunk_type; |
10ad330c1733
fixed WAV demuxer so that it skips to the actual start of the audio data
melanson
parents:
4717
diff
changeset
|
157 unsigned int chunk_size; |
4694 | 158 WAVEFORMATEX* w; |
159 int l; | |
160 sh_audio->wf = w = (WAVEFORMATEX*)malloc(sizeof(WAVEFORMATEX)); | |
161 l = stream_read_dword_le(s); | |
162 if(l < 16) { | |
163 printf("Bad wav header length : too short !!!\n"); | |
164 free_sh_audio(sh_audio); | |
165 return 0; | |
166 } | |
167 w->wFormatTag = sh_audio->format = stream_read_word_le(s); | |
168 w->nChannels = sh_audio->channels = stream_read_word_le(s); | |
169 w->nSamplesPerSec = sh_audio->samplerate = stream_read_dword_le(s); | |
170 w->nAvgBytesPerSec = stream_read_dword_le(s); | |
171 w->nBlockAlign = stream_read_word_le(s); | |
172 w->wBitsPerSample = sh_audio->samplesize = stream_read_word_le(s); | |
173 w->cbSize = 0; | |
174 l -= 16; | |
7847 | 175 if(verbose>0) print_wave_header(w); |
4694 | 176 if(l) |
177 stream_skip(s,l); | |
4720
10ad330c1733
fixed WAV demuxer so that it skips to the actual start of the audio data
melanson
parents:
4717
diff
changeset
|
178 do |
10ad330c1733
fixed WAV demuxer so that it skips to the actual start of the audio data
melanson
parents:
4717
diff
changeset
|
179 { |
10ad330c1733
fixed WAV demuxer so that it skips to the actual start of the audio data
melanson
parents:
4717
diff
changeset
|
180 chunk_type = stream_read_fourcc(demuxer->stream); |
10ad330c1733
fixed WAV demuxer so that it skips to the actual start of the audio data
melanson
parents:
4717
diff
changeset
|
181 chunk_size = stream_read_dword_le(demuxer->stream); |
10ad330c1733
fixed WAV demuxer so that it skips to the actual start of the audio data
melanson
parents:
4717
diff
changeset
|
182 if (chunk_type != mmioFOURCC('d', 'a', 't', 'a')) |
10ad330c1733
fixed WAV demuxer so that it skips to the actual start of the audio data
melanson
parents:
4717
diff
changeset
|
183 stream_skip(demuxer->stream, chunk_size); |
10ad330c1733
fixed WAV demuxer so that it skips to the actual start of the audio data
melanson
parents:
4717
diff
changeset
|
184 } while (chunk_type != mmioFOURCC('d', 'a', 't', 'a')); |
4694 | 185 demuxer->movi_start = stream_tell(s); |
186 demuxer->movi_end = s->end_pos; | |
7847 | 187 // printf("wav: %X .. %X\n",(int)demuxer->movi_start,(int)demuxer->movi_end); |
4694 | 188 } break; |
189 } | |
190 | |
191 priv = (da_priv_t*)malloc(sizeof(da_priv_t)); | |
192 priv->frmt = frmt; | |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
193 priv->last_pts = -1; |
4694 | 194 demuxer->priv = priv; |
195 demuxer->audio->id = 0; | |
196 demuxer->audio->sh = sh_audio; | |
197 sh_audio->ds = demuxer->audio; | |
198 | |
199 if(stream_tell(s) != demuxer->movi_start) | |
200 stream_seek(s,demuxer->movi_start); | |
201 | |
4712 | 202 mp_msg(MSGT_DEMUX,MSGL_V,"demux_audio: audio data 0x%X - 0x%X \n",demuxer->movi_start,demuxer->movi_end); |
203 | |
4694 | 204 return 1; |
205 } | |
206 | |
207 | |
208 int demux_audio_fill_buffer(demux_stream_t *ds) { | |
209 sh_audio_t* sh_audio; | |
210 demuxer_t* demux; | |
211 da_priv_t* priv; | |
212 stream_t* s; | |
213 #ifdef MP_DEBUG | |
214 assert(ds != NULL); | |
215 assert(ds->sh != NULL); | |
216 assert(ds->demuxer != NULL); | |
217 #endif | |
218 sh_audio = ds->sh; | |
219 demux = ds->demuxer; | |
220 priv = demux->priv; | |
221 s = demux->stream; | |
222 | |
223 if(s->eof || (demux->movi_end && stream_tell(s) >= demux->movi_end) ) | |
224 return 0; | |
225 | |
226 switch(priv->frmt) { | |
227 case MP3 : | |
228 while(! s->eof || (demux->movi_end && stream_tell(s) >= demux->movi_end) ) { | |
229 uint8_t hdr[4]; | |
230 int len; | |
231 stream_read(s,hdr,4); | |
232 len = mp_decode_mp3_header(hdr); | |
233 if(len < 0) { | |
234 stream_skip(s,-3); | |
235 } else { | |
236 demux_packet_t* dp; | |
237 if(s->eof || (demux->movi_end && stream_tell(s) >= demux->movi_end) ) | |
238 return 0; | |
239 dp = new_demux_packet(len); | |
240 memcpy(dp->buffer,hdr,4); | |
241 stream_read(s,dp->buffer + 4,len-4); | |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
242 priv->last_pts = priv->last_pts < 0 ? 0 : priv->last_pts + 1152/(float)sh_audio->samplerate; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
243 ds->pts = priv->last_pts - (ds_tell_pts(demux->audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; |
4694 | 244 ds_add_packet(ds,dp); |
245 return 1; | |
246 } | |
4700
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
247 } break; |
4694 | 248 case WAV : { |
249 int l = sh_audio->wf->nAvgBytesPerSec; | |
250 demux_packet_t* dp = new_demux_packet(l); | |
251 stream_read(s,dp->buffer,l); | |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
252 priv->last_pts = priv->last_pts < 0 ? 0 : priv->last_pts + l/(float)sh_audio->i_bps; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
253 ds->pts = priv->last_pts - (ds_tell_pts(demux->audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; |
4694 | 254 ds_add_packet(ds,dp); |
255 return 1; | |
256 } | |
257 default: | |
4720
10ad330c1733
fixed WAV demuxer so that it skips to the actual start of the audio data
melanson
parents:
4717
diff
changeset
|
258 printf("Audio demuxer : unknown format %d\n",priv->frmt); |
4694 | 259 } |
260 | |
261 | |
262 return 0; | |
263 } | |
264 | |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
265 static void high_res_mp3_seek(demuxer_t *demuxer,float time) { |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
266 uint8_t hdr[4]; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
267 int len,nf; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
268 da_priv_t* priv = demuxer->priv; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
269 sh_audio_t* sh = (sh_audio_t*)demuxer->audio->sh; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
270 |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
271 nf = time*sh->samplerate/1152; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
272 while(nf > 0) { |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
273 stream_read(demuxer->stream,hdr,4); |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
274 len = mp_decode_mp3_header(hdr); |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
275 if(len < 0) { |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
276 stream_skip(demuxer->stream,-3); |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
277 continue; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
278 } |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
279 stream_skip(demuxer->stream,len-4); |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
280 priv->last_pts += 1152/(float)sh->samplerate; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
281 nf--; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
282 } |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
283 } |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
284 |
4694 | 285 void demux_audio_seek(demuxer_t *demuxer,float rel_seek_secs,int flags){ |
286 sh_audio_t* sh_audio; | |
287 stream_t* s; | |
288 int base,pos; | |
289 float len; | |
290 da_priv_t* priv; | |
291 | |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
292 if(!(sh_audio = demuxer->audio->sh)) |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
293 return; |
4694 | 294 s = demuxer->stream; |
295 priv = demuxer->priv; | |
296 | |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
297 if(priv->frmt == MP3 && hr_mp3_seek && !(flags & 2)) { |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
298 len = (flags & 1) ? rel_seek_secs - priv->last_pts : rel_seek_secs; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
299 if(len < 0) { |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
300 stream_seek(s,demuxer->movi_start); |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
301 len = priv->last_pts + len; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
302 priv->last_pts = 0; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
303 } |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
304 if(len > 0) |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
305 high_res_mp3_seek(demuxer,len); |
8056
324b6e5387be
A-V sync cleanup: sh_audio->timer replaced by sh_audio->delay, it contains
arpi
parents:
7867
diff
changeset
|
306 sh_audio->delay = priv->last_pts - (ds_tell_pts(demuxer->audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
307 resync_audio_stream(sh_audio); |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
308 return; |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
309 } |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
310 |
5796 | 311 base = flags&1 ? demuxer->movi_start : stream_tell(s); |
312 if(flags&2) | |
313 pos = base + ((demuxer->movi_end - demuxer->movi_start)*rel_seek_secs); | |
314 else | |
315 pos = base + (rel_seek_secs*sh_audio->i_bps); | |
4694 | 316 |
317 if(demuxer->movi_end && pos >= demuxer->movi_end) { | |
8359 | 318 pos = demuxer->movi_end; |
319 //sh_audio->delay = (stream_tell(s) - demuxer->movi_start)/(float)sh_audio->i_bps; | |
320 //return; | |
4694 | 321 } else if(pos < demuxer->movi_start) |
322 pos = demuxer->movi_start; | |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
323 |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
324 priv->last_pts = (pos-demuxer->movi_start)/(float)sh_audio->i_bps; |
8056
324b6e5387be
A-V sync cleanup: sh_audio->timer replaced by sh_audio->delay, it contains
arpi
parents:
7867
diff
changeset
|
325 sh_audio->delay = priv->last_pts - (ds_tell_pts(demuxer->audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; |
4694 | 326 |
327 switch(priv->frmt) { | |
328 case WAV: | |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
329 pos -= (pos % (sh_audio->channels * sh_audio->samplesize) ); |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
330 // We need to decrease the pts by one step to make it the "last one" |
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
331 priv->last_pts -= sh_audio->wf->nAvgBytesPerSec/(float)sh_audio->i_bps; |
4694 | 332 break; |
333 } | |
334 | |
335 stream_seek(s,pos); | |
336 | |
4700
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
337 resync_audio_stream(sh_audio); |
30131db5dfbb
Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore)
albeu
parents:
4694
diff
changeset
|
338 |
4694 | 339 } |
4764
9579496a91db
Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2
albeu
parents:
4720
diff
changeset
|
340 |
5812 | 341 void demux_close_audio(demuxer_t* demuxer) { |
342 da_priv_t* priv = demuxer->priv; | |
343 | |
344 if(!priv) | |
345 return; | |
346 free(priv); | |
347 } | |
348 |