Mercurial > mplayer.hg
annotate libmpdemux/demux_lavf.c @ 16014:67266a949b51
remove delay when setting audio volume
author | nplourde |
---|---|
date | Tue, 19 Jul 2005 14:36:13 +0000 |
parents | cc9662daeccf |
children | a1fd1a7eeb35 |
rev | line source |
---|---|
12164 | 1 /* |
2 Copyright (C) 2004 Michael Niedermayer <michaelni@gmx.at> | |
3 | |
4 This program 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. | |
8 | |
9 This program 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. | |
13 | |
14 You should have received a copy of the GNU General Public License | |
15 along with this program; if not, write to the Free Software | |
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
17 */ | |
18 | |
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 "stream.h" | |
28 #include "demuxer.h" | |
29 #include "stheader.h" | |
30 | |
31 #ifdef USE_LIBAVFORMAT | |
32 | |
33 #include "avformat.h" | |
34 #include "avi.h" | |
35 | |
36 #define PROBE_BUF_SIZE 2048 | |
37 | |
38 typedef struct lavf_priv_t{ | |
39 AVInputFormat *avif; | |
40 AVFormatContext *avfc; | |
41 ByteIOContext pb; | |
42 int audio_streams; | |
43 int video_streams; | |
12168 | 44 int64_t last_pts; |
12164 | 45 }lavf_priv_t; |
46 | |
47 extern void print_wave_header(WAVEFORMATEX *h); | |
48 extern void print_video_header(BITMAPINFOHEADER *h); | |
49 | |
15011 | 50 int64_t ff_gcd(int64_t a, int64_t b); |
51 | |
12164 | 52 static int mp_open(URLContext *h, const char *filename, int flags){ |
53 return 0; | |
54 } | |
55 | |
56 static int mp_read(URLContext *h, unsigned char *buf, int size){ | |
57 stream_t *stream = (stream_t*)h->priv_data; | |
12165
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
58 int ret; |
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
59 |
12164 | 60 if(stream_eof(stream)) //needed? |
61 return -1; | |
12165
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
62 ret=stream_read(stream, buf, size); |
12166 | 63 |
12165
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
64 mp_msg(MSGT_HEADER,MSGL_DBG2,"%d=mp_read(%p, %p, %d), eof:%d\n", ret, h, buf, size, stream->eof); |
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
65 return ret; |
12164 | 66 } |
67 | |
68 static int mp_write(URLContext *h, unsigned char *buf, int size){ | |
69 return -1; | |
70 } | |
71 | |
72 static offset_t mp_seek(URLContext *h, offset_t pos, int whence){ | |
73 stream_t *stream = (stream_t*)h->priv_data; | |
12165
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
74 |
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
75 mp_msg(MSGT_HEADER,MSGL_DBG2,"mp_seek(%p, %d, %d)\n", h, (int)pos, whence); |
12164 | 76 if(whence == SEEK_CUR) |
77 pos +=stream_tell(stream); | |
78 else if(whence == SEEK_END) | |
79 pos += stream->end_pos; | |
80 else if(whence != SEEK_SET) | |
81 return -1; | |
82 | |
12167 | 83 if(pos<stream->end_pos && stream->eof) |
12166 | 84 stream_reset(stream); |
12164 | 85 if(stream_seek(stream, pos)==0) |
86 return -1; | |
12166 | 87 |
12164 | 88 return pos; |
89 } | |
90 | |
91 static int mp_close(URLContext *h){ | |
92 return 0; | |
93 } | |
94 | |
95 static URLProtocol mp_protocol = { | |
96 "mp", | |
97 mp_open, | |
98 mp_read, | |
99 mp_write, | |
100 mp_seek, | |
101 mp_close, | |
102 }; | |
103 | |
104 int lavf_check_file(demuxer_t *demuxer){ | |
105 AVProbeData avpd; | |
106 uint8_t buf[PROBE_BUF_SIZE]; | |
107 lavf_priv_t *priv; | |
108 | |
109 if(!demuxer->priv) | |
110 demuxer->priv=calloc(sizeof(lavf_priv_t),1); | |
111 priv= demuxer->priv; | |
112 | |
113 av_register_all(); | |
114 | |
15819 | 115 if(stream_read(demuxer->stream, buf, PROBE_BUF_SIZE)!=PROBE_BUF_SIZE) |
116 return 0; | |
12164 | 117 avpd.filename= demuxer->stream->url; |
118 avpd.buf= buf; | |
119 avpd.buf_size= PROBE_BUF_SIZE; | |
120 | |
121 priv->avif= av_probe_input_format(&avpd, 1); | |
122 if(!priv->avif){ | |
123 mp_msg(MSGT_HEADER,MSGL_V,"LAVF_check: no clue about this gibberish!\n"); | |
124 return 0; | |
125 }else | |
126 mp_msg(MSGT_HEADER,MSGL_V,"LAVF_check: %s\n", priv->avif->long_name); | |
127 | |
128 return 1; | |
129 } | |
130 | |
131 int demux_open_lavf(demuxer_t *demuxer){ | |
132 AVFormatContext *avfc; | |
133 AVFormatParameters ap; | |
134 lavf_priv_t *priv= demuxer->priv; | |
15011 | 135 int i,g; |
12164 | 136 char mp_filename[256]="mp:"; |
137 | |
138 memset(&ap, 0, sizeof(AVFormatParameters)); | |
139 | |
140 stream_seek(demuxer->stream, 0); | |
141 | |
142 register_protocol(&mp_protocol); | |
143 | |
12463 | 144 if(demuxer->stream->url) |
145 strncpy(mp_filename + 3, demuxer->stream->url, sizeof(mp_filename)-3); | |
146 else | |
147 strncpy(mp_filename + 3, "foobar.dummy", sizeof(mp_filename)-3); | |
12164 | 148 |
149 url_fopen(&priv->pb, mp_filename, URL_RDONLY); | |
150 | |
151 ((URLContext*)(priv->pb.opaque))->priv_data= demuxer->stream; | |
152 | |
153 if(av_open_input_stream(&avfc, &priv->pb, mp_filename, priv->avif, &ap)<0){ | |
154 mp_msg(MSGT_HEADER,MSGL_ERR,"LAVF_header: av_open_input_stream() failed\n"); | |
155 return 0; | |
156 } | |
157 | |
158 priv->avfc= avfc; | |
159 | |
160 if(av_find_stream_info(avfc) < 0){ | |
161 mp_msg(MSGT_HEADER,MSGL_ERR,"LAVF_header: av_find_stream_info() failed\n"); | |
162 return 0; | |
163 } | |
164 | |
12167 | 165 if(avfc->title [0]) demux_info_add(demuxer, "name" , avfc->title ); |
166 if(avfc->author [0]) demux_info_add(demuxer, "author" , avfc->author ); | |
167 if(avfc->copyright[0]) demux_info_add(demuxer, "copyright", avfc->copyright); | |
168 if(avfc->comment [0]) demux_info_add(demuxer, "comments" , avfc->comment ); | |
169 if(avfc->album [0]) demux_info_add(demuxer, "album" , avfc->album ); | |
170 // if(avfc->year ) demux_info_add(demuxer, "year" , avfc->year ); | |
171 // if(avfc->track ) demux_info_add(demuxer, "track" , avfc->track ); | |
172 if(avfc->genre [0]) demux_info_add(demuxer, "genre" , avfc->genre ); | |
12164 | 173 |
174 for(i=0; i<avfc->nb_streams; i++){ | |
175 AVStream *st= avfc->streams[i]; | |
16000 | 176 #if LIBAVFORMAT_BUILD >= 4629 |
177 AVCodecContext *codec= st->codec; | |
178 #else | |
12164 | 179 AVCodecContext *codec= &st->codec; |
16000 | 180 #endif |
12164 | 181 |
182 switch(codec->codec_type){ | |
183 case CODEC_TYPE_AUDIO:{ | |
184 WAVEFORMATEX *wf= calloc(sizeof(WAVEFORMATEX) + codec->extradata_size, 1); | |
185 sh_audio_t* sh_audio=new_sh_audio(demuxer, i); | |
186 priv->audio_streams++; | |
187 if(!codec->codec_tag) | |
188 codec->codec_tag= codec_get_wav_tag(codec->codec_id); | |
189 wf->wFormatTag= codec->codec_tag; | |
190 wf->nChannels= codec->channels; | |
191 wf->nSamplesPerSec= codec->sample_rate; | |
192 wf->nAvgBytesPerSec= codec->bit_rate/8; | |
193 wf->nBlockAlign= codec->block_align; | |
194 wf->wBitsPerSample= codec->bits_per_sample; | |
195 wf->cbSize= codec->extradata_size; | |
196 if(codec->extradata_size){ | |
197 memcpy( | |
198 wf + 1, | |
199 codec->extradata, | |
200 codec->extradata_size); | |
201 } | |
202 sh_audio->wf= wf; | |
15011 | 203 sh_audio->audio.dwSampleSize= codec->block_align; |
204 if(codec->frame_size && codec->sample_rate){ | |
205 sh_audio->audio.dwScale=codec->frame_size; | |
206 sh_audio->audio.dwRate= codec->sample_rate; | |
207 }else{ | |
208 sh_audio->audio.dwScale= codec->block_align ? codec->block_align*8 : 8; | |
209 sh_audio->audio.dwRate = codec->bit_rate; | |
210 } | |
211 g= ff_gcd(sh_audio->audio.dwScale, sh_audio->audio.dwRate); | |
212 sh_audio->audio.dwScale /= g; | |
213 sh_audio->audio.dwRate /= g; | |
214 // printf("sca:%d rat:%d fs:%d sr:%d ba:%d\n", sh_audio->audio.dwScale, sh_audio->audio.dwRate, codec->frame_size, codec->sample_rate, codec->block_align); | |
12164 | 215 sh_audio->ds= demuxer->audio; |
216 sh_audio->format= codec->codec_tag; | |
217 sh_audio->channels= codec->channels; | |
218 sh_audio->samplerate= codec->sample_rate; | |
15007 | 219 sh_audio->i_bps= codec->bit_rate/8; |
12164 | 220 if(verbose>=1) print_wave_header(sh_audio->wf); |
15004 | 221 if(demuxer->audio->id != i && demuxer->audio->id != -1) |
222 st->discard= AVDISCARD_ALL; | |
223 else{ | |
224 demuxer->audio->id = i; | |
225 demuxer->audio->sh= demuxer->a_streams[i]; | |
226 } | |
12164 | 227 break;} |
228 case CODEC_TYPE_VIDEO:{ | |
229 BITMAPINFOHEADER *bih=calloc(sizeof(BITMAPINFOHEADER) + codec->extradata_size,1); | |
230 sh_video_t* sh_video=new_sh_video(demuxer, i); | |
231 | |
232 priv->video_streams++; | |
233 if(!codec->codec_tag) | |
234 codec->codec_tag= codec_get_bmp_tag(codec->codec_id); | |
235 bih->biSize= sizeof(BITMAPINFOHEADER) + codec->extradata_size; | |
236 bih->biWidth= codec->width; | |
237 bih->biHeight= codec->height; | |
238 bih->biBitCount= codec->bits_per_sample; | |
239 bih->biSizeImage = bih->biWidth * bih->biHeight * bih->biBitCount/8; | |
240 bih->biCompression= codec->codec_tag; | |
241 sh_video->bih= bih; | |
242 sh_video->disp_w= codec->width; | |
243 sh_video->disp_h= codec->height; | |
15308 | 244 #if LIBAVFORMAT_BUILD >= 4624 |
245 sh_video->video.dwRate= codec->time_base.den; | |
246 sh_video->video.dwScale= codec->time_base.num; | |
247 #else | |
12164 | 248 sh_video->video.dwRate= codec->frame_rate; |
249 sh_video->video.dwScale= codec->frame_rate_base; | |
15308 | 250 #endif |
12164 | 251 sh_video->fps=(float)sh_video->video.dwRate/(float)sh_video->video.dwScale; |
252 sh_video->frametime=(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; | |
253 sh_video->format = bih->biCompression; | |
12167 | 254 sh_video->aspect= codec->width * codec->sample_aspect_ratio.num |
255 / (float)(codec->height * codec->sample_aspect_ratio.den); | |
15007 | 256 sh_video->i_bps= codec->bit_rate/8; |
12167 | 257 mp_msg(MSGT_DEMUX,MSGL_DBG2,"aspect= %d*%d/(%d*%d)\n", |
258 codec->width, codec->sample_aspect_ratio.num, | |
259 codec->height, codec->sample_aspect_ratio.den); | |
260 | |
12164 | 261 sh_video->ds= demuxer->video; |
262 if(codec->extradata_size) | |
263 memcpy(sh_video->bih + 1, codec->extradata, codec->extradata_size); | |
264 if(verbose>=1) print_video_header(sh_video->bih); | |
265 /* short biPlanes; | |
266 int biXPelsPerMeter; | |
267 int biYPelsPerMeter; | |
268 int biClrUsed; | |
269 int biClrImportant;*/ | |
15004 | 270 if(demuxer->video->id != i && demuxer->video->id != -1) |
271 st->discard= AVDISCARD_ALL; | |
272 else{ | |
273 demuxer->video->id = i; | |
274 demuxer->video->sh= demuxer->v_streams[i]; | |
275 } | |
12164 | 276 break;} |
15004 | 277 default: |
278 st->discard= AVDISCARD_ALL; | |
12164 | 279 } |
280 } | |
281 | |
282 mp_msg(MSGT_HEADER,MSGL_V,"LAVF: %d audio and %d video streams found\n",priv->audio_streams,priv->video_streams); | |
13749 | 283 mp_msg(MSGT_HEADER,MSGL_V,"LAVF: build %d\n", LIBAVFORMAT_BUILD); |
12164 | 284 if(!priv->audio_streams) demuxer->audio->id=-2; // nosound |
285 // else if(best_audio > 0 && demuxer->audio->id == -1) demuxer->audio->id=best_audio; | |
286 if(!priv->video_streams){ | |
287 if(!priv->audio_streams){ | |
288 mp_msg(MSGT_HEADER,MSGL_ERR,"LAVF: no audio or video headers found - broken file?\n"); | |
289 return 0; | |
290 } | |
291 demuxer->video->id=-2; // audio-only | |
292 } //else if (best_video > 0 && demuxer->video->id == -1) demuxer->video->id = best_video; | |
293 | |
294 return 1; | |
295 } | |
296 | |
297 int demux_lavf_fill_buffer(demuxer_t *demux){ | |
298 lavf_priv_t *priv= demux->priv; | |
299 AVPacket pkt; | |
300 demux_packet_t *dp; | |
301 demux_stream_t *ds; | |
302 int id; | |
303 mp_msg(MSGT_DEMUX,MSGL_DBG2,"demux_lavf_fill_buffer()\n"); | |
304 | |
305 demux->filepos=stream_tell(demux->stream); | |
306 | |
307 if(stream_eof(demux->stream)){ | |
308 // demuxre->stream->eof=1; | |
309 return 0; | |
310 } | |
311 | |
312 if(av_read_frame(priv->avfc, &pkt) < 0) | |
313 return 0; | |
314 | |
315 id= pkt.stream_index; | |
316 | |
317 if(id==demux->audio->id){ | |
318 // audio | |
319 ds=demux->audio; | |
320 if(!ds->sh){ | |
321 ds->sh=demux->a_streams[id]; | |
322 mp_msg(MSGT_DEMUX,MSGL_V,"Auto-selected LAVF audio ID = %d\n",ds->id); | |
323 } | |
324 } else if(id==demux->video->id){ | |
325 // video | |
326 ds=demux->video; | |
327 if(!ds->sh){ | |
328 ds->sh=demux->v_streams[id]; | |
329 mp_msg(MSGT_DEMUX,MSGL_V,"Auto-selected LAVF video ID = %d\n",ds->id); | |
330 } | |
14611 | 331 } else { |
332 av_free_packet(&pkt); | |
333 return 1; | |
334 } | |
12164 | 335 |
336 if(0/*pkt.destruct == av_destruct_packet*/){ | |
337 //ok kids, dont try this at home :) | |
338 dp=(demux_packet_t*)malloc(sizeof(demux_packet_t)); | |
339 dp->len=pkt.size; | |
340 dp->next=NULL; | |
341 dp->refcount=1; | |
342 dp->master=NULL; | |
343 dp->buffer=pkt.data; | |
344 pkt.destruct= NULL; | |
345 }else{ | |
346 dp=new_demux_packet(pkt.size); | |
347 memcpy(dp->buffer, pkt.data, pkt.size); | |
348 av_free_packet(&pkt); | |
349 } | |
350 | |
13747 | 351 if(pkt.pts != AV_NOPTS_VALUE){ |
15308 | 352 #if LIBAVFORMAT_BUILD >= 4624 |
353 dp->pts=pkt.pts * av_q2d(priv->avfc->streams[id]->time_base); | |
354 priv->last_pts= dp->pts * AV_TIME_BASE; | |
355 #else | |
13747 | 356 priv->last_pts= pkt.pts; |
357 dp->pts=pkt.pts / (float)AV_TIME_BASE; | |
15308 | 358 #endif |
13747 | 359 } |
12164 | 360 dp->pos=demux->filepos; |
361 dp->flags= !!(pkt.flags&PKT_FLAG_KEY); | |
362 // append packet to DS stream: | |
363 ds_add_packet(ds,dp); | |
364 return 1; | |
365 } | |
366 | |
367 void demux_seek_lavf(demuxer_t *demuxer, float rel_seek_secs, int flags){ | |
12168 | 368 lavf_priv_t *priv = demuxer->priv; |
369 mp_msg(MSGT_DEMUX,MSGL_DBG2,"demux_seek_lavf(%p, %f, %d)\n", demuxer, rel_seek_secs, flags); | |
370 | |
13607 | 371 #if LIBAVFORMAT_BUILD < 4619 |
12168 | 372 av_seek_frame(priv->avfc, -1, priv->last_pts + rel_seek_secs*AV_TIME_BASE); |
13607 | 373 #else |
374 av_seek_frame(priv->avfc, -1, priv->last_pts + rel_seek_secs*AV_TIME_BASE, rel_seek_secs < 0 ? AVSEEK_FLAG_BACKWARD : 0); | |
375 #endif | |
12164 | 376 } |
377 | |
378 int demux_lavf_control(demuxer_t *demuxer, int cmd, void *arg) | |
379 { | |
380 lavf_priv_t *priv = demuxer->priv; | |
381 | |
382 switch (cmd) { | |
12168 | 383 case DEMUXER_CTRL_GET_TIME_LENGTH: |
384 if (priv->avfc->duration == 0) | |
12164 | 385 return DEMUXER_CTRL_DONTKNOW; |
386 | |
12168 | 387 *((unsigned long *)arg) = priv->avfc->duration / AV_TIME_BASE; |
12164 | 388 return DEMUXER_CTRL_OK; |
389 | |
390 case DEMUXER_CTRL_GET_PERCENT_POS: | |
12168 | 391 if (priv->avfc->duration == 0) |
12164 | 392 return DEMUXER_CTRL_DONTKNOW; |
393 | |
12168 | 394 *((int *)arg) = (int)(priv->last_pts*100 / priv->avfc->duration); |
395 return DEMUXER_CTRL_OK; | |
12164 | 396 |
397 default: | |
398 return DEMUXER_CTRL_NOTIMPL; | |
399 } | |
400 } | |
401 | |
402 void demux_close_lavf(demuxer_t *demuxer) | |
403 { | |
404 lavf_priv_t* priv = demuxer->priv; | |
405 if (priv){ | |
12304
434242b0706c
fix possible segfault on lavf demuxer patch by (adland <adland123 at yahoo dot com>)
michael
parents:
12168
diff
changeset
|
406 if(priv->avfc) |
434242b0706c
fix possible segfault on lavf demuxer patch by (adland <adland123 at yahoo dot com>)
michael
parents:
12168
diff
changeset
|
407 { |
434242b0706c
fix possible segfault on lavf demuxer patch by (adland <adland123 at yahoo dot com>)
michael
parents:
12168
diff
changeset
|
408 av_close_input_file(priv->avfc); priv->avfc= NULL; |
434242b0706c
fix possible segfault on lavf demuxer patch by (adland <adland123 at yahoo dot com>)
michael
parents:
12168
diff
changeset
|
409 } |
12164 | 410 free(priv); demuxer->priv= NULL; |
411 } | |
412 } | |
413 | |
414 #endif // USE_LIBAVFORMAT |