Mercurial > mplayer.hg
annotate libmpdemux/demux_lavf.c @ 19528:ebfab0b18c09
Remove redundant variable that is contained in COMMON_LIBS.
author | diego |
---|---|
date | Fri, 25 Aug 2006 15:09:33 +0000 |
parents | c636a4e9565a |
children | 4cff22c91b39 |
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 | |
17367
401b440a6d76
Update licensing information: The FSF changed postal address.
diego
parents:
17354
diff
changeset
|
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
12164 | 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 | |
17354 | 31 #ifdef USE_LIBAVFORMAT_SO |
32 #include <ffmpeg/avformat.h> | |
33 #else | |
12164 | 34 #include "avformat.h" |
35 #include "avi.h" | |
17354 | 36 #endif |
12164 | 37 |
38 #define PROBE_BUF_SIZE 2048 | |
39 | |
18775 | 40 extern char *audio_lang; |
41 | |
12164 | 42 typedef struct lavf_priv_t{ |
43 AVInputFormat *avif; | |
44 AVFormatContext *avfc; | |
45 ByteIOContext pb; | |
46 int audio_streams; | |
47 int video_streams; | |
12168 | 48 int64_t last_pts; |
18762 | 49 int astreams[MAX_A_STREAMS]; |
12164 | 50 }lavf_priv_t; |
51 | |
17977
f70772d02eaa
Convert printfs in aviprint.c to mp_msg and give the information printing
diego
parents:
17932
diff
changeset
|
52 extern void print_wave_header(WAVEFORMATEX *h, int verbose_level); |
f70772d02eaa
Convert printfs in aviprint.c to mp_msg and give the information printing
diego
parents:
17932
diff
changeset
|
53 extern void print_video_header(BITMAPINFOHEADER *h, int verbose_level); |
12164 | 54 |
15011 | 55 int64_t ff_gcd(int64_t a, int64_t b); |
56 | |
12164 | 57 static int mp_open(URLContext *h, const char *filename, int flags){ |
58 return 0; | |
59 } | |
60 | |
61 static int mp_read(URLContext *h, unsigned char *buf, int size){ | |
62 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
|
63 int ret; |
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
64 |
12164 | 65 if(stream_eof(stream)) //needed? |
66 return -1; | |
12165
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
67 ret=stream_read(stream, buf, size); |
12166 | 68 |
12165
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
69 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
|
70 return ret; |
12164 | 71 } |
72 | |
73 static int mp_write(URLContext *h, unsigned char *buf, int size){ | |
74 return -1; | |
75 } | |
76 | |
77 static offset_t mp_seek(URLContext *h, offset_t pos, int whence){ | |
78 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
|
79 |
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
80 mp_msg(MSGT_HEADER,MSGL_DBG2,"mp_seek(%p, %d, %d)\n", h, (int)pos, whence); |
12164 | 81 if(whence == SEEK_CUR) |
82 pos +=stream_tell(stream); | |
83 else if(whence == SEEK_END) | |
84 pos += stream->end_pos; | |
85 else if(whence != SEEK_SET) | |
86 return -1; | |
87 | |
12167 | 88 if(pos<stream->end_pos && stream->eof) |
12166 | 89 stream_reset(stream); |
12164 | 90 if(stream_seek(stream, pos)==0) |
91 return -1; | |
12166 | 92 |
12164 | 93 return pos; |
94 } | |
95 | |
96 static int mp_close(URLContext *h){ | |
97 return 0; | |
98 } | |
99 | |
100 static URLProtocol mp_protocol = { | |
101 "mp", | |
102 mp_open, | |
103 mp_read, | |
104 mp_write, | |
105 mp_seek, | |
106 mp_close, | |
107 }; | |
108 | |
16175 | 109 static int lavf_check_file(demuxer_t *demuxer){ |
12164 | 110 AVProbeData avpd; |
111 uint8_t buf[PROBE_BUF_SIZE]; | |
112 lavf_priv_t *priv; | |
113 | |
114 if(!demuxer->priv) | |
115 demuxer->priv=calloc(sizeof(lavf_priv_t),1); | |
116 priv= demuxer->priv; | |
117 | |
118 av_register_all(); | |
119 | |
15819 | 120 if(stream_read(demuxer->stream, buf, PROBE_BUF_SIZE)!=PROBE_BUF_SIZE) |
121 return 0; | |
12164 | 122 avpd.filename= demuxer->stream->url; |
123 avpd.buf= buf; | |
124 avpd.buf_size= PROBE_BUF_SIZE; | |
125 | |
126 priv->avif= av_probe_input_format(&avpd, 1); | |
127 if(!priv->avif){ | |
128 mp_msg(MSGT_HEADER,MSGL_V,"LAVF_check: no clue about this gibberish!\n"); | |
129 return 0; | |
130 }else | |
131 mp_msg(MSGT_HEADER,MSGL_V,"LAVF_check: %s\n", priv->avif->long_name); | |
132 | |
16175 | 133 return DEMUXER_TYPE_LAVF; |
12164 | 134 } |
135 | |
16175 | 136 static demuxer_t* demux_open_lavf(demuxer_t *demuxer){ |
12164 | 137 AVFormatContext *avfc; |
138 AVFormatParameters ap; | |
139 lavf_priv_t *priv= demuxer->priv; | |
15011 | 140 int i,g; |
12164 | 141 char mp_filename[256]="mp:"; |
142 | |
143 memset(&ap, 0, sizeof(AVFormatParameters)); | |
144 | |
145 stream_seek(demuxer->stream, 0); | |
146 | |
147 register_protocol(&mp_protocol); | |
148 | |
12463 | 149 if(demuxer->stream->url) |
150 strncpy(mp_filename + 3, demuxer->stream->url, sizeof(mp_filename)-3); | |
151 else | |
152 strncpy(mp_filename + 3, "foobar.dummy", sizeof(mp_filename)-3); | |
12164 | 153 |
154 url_fopen(&priv->pb, mp_filename, URL_RDONLY); | |
155 | |
156 ((URLContext*)(priv->pb.opaque))->priv_data= demuxer->stream; | |
157 | |
158 if(av_open_input_stream(&avfc, &priv->pb, mp_filename, priv->avif, &ap)<0){ | |
159 mp_msg(MSGT_HEADER,MSGL_ERR,"LAVF_header: av_open_input_stream() failed\n"); | |
16175 | 160 return NULL; |
12164 | 161 } |
162 | |
163 priv->avfc= avfc; | |
164 | |
165 if(av_find_stream_info(avfc) < 0){ | |
166 mp_msg(MSGT_HEADER,MSGL_ERR,"LAVF_header: av_find_stream_info() failed\n"); | |
16175 | 167 return NULL; |
12164 | 168 } |
169 | |
12167 | 170 if(avfc->title [0]) demux_info_add(demuxer, "name" , avfc->title ); |
171 if(avfc->author [0]) demux_info_add(demuxer, "author" , avfc->author ); | |
172 if(avfc->copyright[0]) demux_info_add(demuxer, "copyright", avfc->copyright); | |
173 if(avfc->comment [0]) demux_info_add(demuxer, "comments" , avfc->comment ); | |
174 if(avfc->album [0]) demux_info_add(demuxer, "album" , avfc->album ); | |
175 // if(avfc->year ) demux_info_add(demuxer, "year" , avfc->year ); | |
176 // if(avfc->track ) demux_info_add(demuxer, "track" , avfc->track ); | |
177 if(avfc->genre [0]) demux_info_add(demuxer, "genre" , avfc->genre ); | |
12164 | 178 |
179 for(i=0; i<avfc->nb_streams; i++){ | |
180 AVStream *st= avfc->streams[i]; | |
16000 | 181 AVCodecContext *codec= st->codec; |
19073
8b52dad54b1d
Remove #if LIBAVCODEC_BUILD >= XXX and #if LIBAVFORMAT_BUILD >= XXX jungle.
diego
parents:
19062
diff
changeset
|
182 |
12164 | 183 switch(codec->codec_type){ |
184 case CODEC_TYPE_AUDIO:{ | |
185 WAVEFORMATEX *wf= calloc(sizeof(WAVEFORMATEX) + codec->extradata_size, 1); | |
18985 | 186 sh_audio_t* sh_audio; |
18762 | 187 if(priv->audio_streams >= MAX_A_STREAMS) |
188 break; | |
18985 | 189 sh_audio=new_sh_audio(demuxer, i); |
18762 | 190 if(!sh_audio) |
191 break; | |
192 priv->astreams[priv->audio_streams] = i; | |
12164 | 193 priv->audio_streams++; |
194 if(!codec->codec_tag) | |
195 codec->codec_tag= codec_get_wav_tag(codec->codec_id); | |
196 wf->wFormatTag= codec->codec_tag; | |
197 wf->nChannels= codec->channels; | |
198 wf->nSamplesPerSec= codec->sample_rate; | |
199 wf->nAvgBytesPerSec= codec->bit_rate/8; | |
200 wf->nBlockAlign= codec->block_align; | |
201 wf->wBitsPerSample= codec->bits_per_sample; | |
202 wf->cbSize= codec->extradata_size; | |
203 if(codec->extradata_size){ | |
204 memcpy( | |
205 wf + 1, | |
206 codec->extradata, | |
207 codec->extradata_size); | |
208 } | |
209 sh_audio->wf= wf; | |
15011 | 210 sh_audio->audio.dwSampleSize= codec->block_align; |
211 if(codec->frame_size && codec->sample_rate){ | |
212 sh_audio->audio.dwScale=codec->frame_size; | |
213 sh_audio->audio.dwRate= codec->sample_rate; | |
214 }else{ | |
215 sh_audio->audio.dwScale= codec->block_align ? codec->block_align*8 : 8; | |
216 sh_audio->audio.dwRate = codec->bit_rate; | |
217 } | |
218 g= ff_gcd(sh_audio->audio.dwScale, sh_audio->audio.dwRate); | |
219 sh_audio->audio.dwScale /= g; | |
220 sh_audio->audio.dwRate /= g; | |
221 // 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 | 222 sh_audio->ds= demuxer->audio; |
223 sh_audio->format= codec->codec_tag; | |
224 sh_audio->channels= codec->channels; | |
225 sh_audio->samplerate= codec->sample_rate; | |
15007 | 226 sh_audio->i_bps= codec->bit_rate/8; |
16134
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
227 switch (codec->codec_id) { |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
228 case CODEC_ID_PCM_S8: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
229 case CODEC_ID_PCM_U8: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
230 sh_audio->samplesize = 1; |
16135 | 231 break; |
16134
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
232 case CODEC_ID_PCM_S16LE: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
233 case CODEC_ID_PCM_S16BE: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
234 case CODEC_ID_PCM_U16LE: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
235 case CODEC_ID_PCM_U16BE: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
236 sh_audio->samplesize = 2; |
16135 | 237 break; |
238 case CODEC_ID_PCM_ALAW: | |
239 sh_audio->format = 0x6; | |
240 break; | |
241 case CODEC_ID_PCM_MULAW: | |
242 sh_audio->format = 0x7; | |
243 break; | |
16134
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
244 } |
17977
f70772d02eaa
Convert printfs in aviprint.c to mp_msg and give the information printing
diego
parents:
17932
diff
changeset
|
245 if( mp_msg_test(MSGT_HEADER,MSGL_V) ) print_wave_header(sh_audio->wf, MSGL_V); |
18775 | 246 if((audio_lang && st->language[0] && !strncmp(audio_lang, st->language, 3)) |
247 || (demuxer->audio->id == i || demuxer->audio->id == -1) | |
248 ) { | |
249 demuxer->audio->id = i; | |
250 demuxer->audio->sh= demuxer->a_streams[i]; | |
251 } | |
252 else | |
15004 | 253 st->discard= AVDISCARD_ALL; |
12164 | 254 break;} |
255 case CODEC_TYPE_VIDEO:{ | |
256 BITMAPINFOHEADER *bih=calloc(sizeof(BITMAPINFOHEADER) + codec->extradata_size,1); | |
257 sh_video_t* sh_video=new_sh_video(demuxer, i); | |
258 | |
259 priv->video_streams++; | |
260 if(!codec->codec_tag) | |
261 codec->codec_tag= codec_get_bmp_tag(codec->codec_id); | |
262 bih->biSize= sizeof(BITMAPINFOHEADER) + codec->extradata_size; | |
263 bih->biWidth= codec->width; | |
264 bih->biHeight= codec->height; | |
265 bih->biBitCount= codec->bits_per_sample; | |
266 bih->biSizeImage = bih->biWidth * bih->biHeight * bih->biBitCount/8; | |
267 bih->biCompression= codec->codec_tag; | |
268 sh_video->bih= bih; | |
269 sh_video->disp_w= codec->width; | |
270 sh_video->disp_h= codec->height; | |
16718
044260623695
makes demux_lavf (-demuxer 35) use the framerate specified in the container
gpoirier
parents:
16346
diff
changeset
|
271 if (st->time_base.den) { /* if container has time_base, use that */ |
044260623695
makes demux_lavf (-demuxer 35) use the framerate specified in the container
gpoirier
parents:
16346
diff
changeset
|
272 sh_video->video.dwRate= st->time_base.den; |
044260623695
makes demux_lavf (-demuxer 35) use the framerate specified in the container
gpoirier
parents:
16346
diff
changeset
|
273 sh_video->video.dwScale= st->time_base.num; |
044260623695
makes demux_lavf (-demuxer 35) use the framerate specified in the container
gpoirier
parents:
16346
diff
changeset
|
274 } else { |
15308 | 275 sh_video->video.dwRate= codec->time_base.den; |
276 sh_video->video.dwScale= codec->time_base.num; | |
16718
044260623695
makes demux_lavf (-demuxer 35) use the framerate specified in the container
gpoirier
parents:
16346
diff
changeset
|
277 } |
17556 | 278 sh_video->fps=av_q2d(st->r_frame_rate); |
279 sh_video->frametime=1/av_q2d(st->r_frame_rate); | |
12164 | 280 sh_video->format = bih->biCompression; |
12167 | 281 sh_video->aspect= codec->width * codec->sample_aspect_ratio.num |
282 / (float)(codec->height * codec->sample_aspect_ratio.den); | |
15007 | 283 sh_video->i_bps= codec->bit_rate/8; |
12167 | 284 mp_msg(MSGT_DEMUX,MSGL_DBG2,"aspect= %d*%d/(%d*%d)\n", |
285 codec->width, codec->sample_aspect_ratio.num, | |
286 codec->height, codec->sample_aspect_ratio.den); | |
287 | |
12164 | 288 sh_video->ds= demuxer->video; |
289 if(codec->extradata_size) | |
290 memcpy(sh_video->bih + 1, codec->extradata, codec->extradata_size); | |
17977
f70772d02eaa
Convert printfs in aviprint.c to mp_msg and give the information printing
diego
parents:
17932
diff
changeset
|
291 if( mp_msg_test(MSGT_HEADER,MSGL_V) ) print_video_header(sh_video->bih, MSGL_V); |
12164 | 292 /* short biPlanes; |
293 int biXPelsPerMeter; | |
294 int biYPelsPerMeter; | |
295 int biClrUsed; | |
296 int biClrImportant;*/ | |
15004 | 297 if(demuxer->video->id != i && demuxer->video->id != -1) |
298 st->discard= AVDISCARD_ALL; | |
299 else{ | |
300 demuxer->video->id = i; | |
301 demuxer->video->sh= demuxer->v_streams[i]; | |
302 } | |
12164 | 303 break;} |
15004 | 304 default: |
305 st->discard= AVDISCARD_ALL; | |
12164 | 306 } |
307 } | |
308 | |
309 mp_msg(MSGT_HEADER,MSGL_V,"LAVF: %d audio and %d video streams found\n",priv->audio_streams,priv->video_streams); | |
13749 | 310 mp_msg(MSGT_HEADER,MSGL_V,"LAVF: build %d\n", LIBAVFORMAT_BUILD); |
12164 | 311 if(!priv->audio_streams) demuxer->audio->id=-2; // nosound |
312 // else if(best_audio > 0 && demuxer->audio->id == -1) demuxer->audio->id=best_audio; | |
313 if(!priv->video_streams){ | |
314 if(!priv->audio_streams){ | |
315 mp_msg(MSGT_HEADER,MSGL_ERR,"LAVF: no audio or video headers found - broken file?\n"); | |
16175 | 316 return NULL; |
12164 | 317 } |
318 demuxer->video->id=-2; // audio-only | |
319 } //else if (best_video > 0 && demuxer->video->id == -1) demuxer->video->id = best_video; | |
320 | |
16175 | 321 return demuxer; |
12164 | 322 } |
323 | |
16175 | 324 static int demux_lavf_fill_buffer(demuxer_t *demux, demux_stream_t *dsds){ |
12164 | 325 lavf_priv_t *priv= demux->priv; |
326 AVPacket pkt; | |
327 demux_packet_t *dp; | |
328 demux_stream_t *ds; | |
329 int id; | |
330 mp_msg(MSGT_DEMUX,MSGL_DBG2,"demux_lavf_fill_buffer()\n"); | |
331 | |
332 demux->filepos=stream_tell(demux->stream); | |
333 | |
334 if(av_read_frame(priv->avfc, &pkt) < 0) | |
335 return 0; | |
336 | |
337 id= pkt.stream_index; | |
338 | |
339 if(id==demux->audio->id){ | |
340 // audio | |
341 ds=demux->audio; | |
342 if(!ds->sh){ | |
343 ds->sh=demux->a_streams[id]; | |
344 mp_msg(MSGT_DEMUX,MSGL_V,"Auto-selected LAVF audio ID = %d\n",ds->id); | |
345 } | |
346 } else if(id==demux->video->id){ | |
347 // video | |
348 ds=demux->video; | |
349 if(!ds->sh){ | |
350 ds->sh=demux->v_streams[id]; | |
351 mp_msg(MSGT_DEMUX,MSGL_V,"Auto-selected LAVF video ID = %d\n",ds->id); | |
352 } | |
14611 | 353 } else { |
354 av_free_packet(&pkt); | |
355 return 1; | |
356 } | |
12164 | 357 |
358 if(0/*pkt.destruct == av_destruct_packet*/){ | |
359 //ok kids, dont try this at home :) | |
19062
83c3afeab35d
drops casts from void * on malloc/calloc from libmpdemux code
reynaldo
parents:
18985
diff
changeset
|
360 dp=malloc(sizeof(demux_packet_t)); |
12164 | 361 dp->len=pkt.size; |
362 dp->next=NULL; | |
363 dp->refcount=1; | |
364 dp->master=NULL; | |
365 dp->buffer=pkt.data; | |
366 pkt.destruct= NULL; | |
367 }else{ | |
368 dp=new_demux_packet(pkt.size); | |
369 memcpy(dp->buffer, pkt.data, pkt.size); | |
370 av_free_packet(&pkt); | |
371 } | |
372 | |
13747 | 373 if(pkt.pts != AV_NOPTS_VALUE){ |
15308 | 374 dp->pts=pkt.pts * av_q2d(priv->avfc->streams[id]->time_base); |
375 priv->last_pts= dp->pts * AV_TIME_BASE; | |
13747 | 376 } |
12164 | 377 dp->pos=demux->filepos; |
378 dp->flags= !!(pkt.flags&PKT_FLAG_KEY); | |
379 // append packet to DS stream: | |
380 ds_add_packet(ds,dp); | |
381 return 1; | |
382 } | |
383 | |
17636 | 384 static void demux_seek_lavf(demuxer_t *demuxer, float rel_seek_secs, float audio_delay, int flags){ |
12168 | 385 lavf_priv_t *priv = demuxer->priv; |
17636 | 386 mp_msg(MSGT_DEMUX,MSGL_DBG2,"demux_seek_lavf(%p, %f, %f, %d)\n", demuxer, rel_seek_secs, audio_delay, flags); |
19073
8b52dad54b1d
Remove #if LIBAVCODEC_BUILD >= XXX and #if LIBAVFORMAT_BUILD >= XXX jungle.
diego
parents:
19062
diff
changeset
|
387 |
13607 | 388 av_seek_frame(priv->avfc, -1, priv->last_pts + rel_seek_secs*AV_TIME_BASE, rel_seek_secs < 0 ? AVSEEK_FLAG_BACKWARD : 0); |
12164 | 389 } |
390 | |
16175 | 391 static int demux_lavf_control(demuxer_t *demuxer, int cmd, void *arg) |
12164 | 392 { |
393 lavf_priv_t *priv = demuxer->priv; | |
394 | |
395 switch (cmd) { | |
12168 | 396 case DEMUXER_CTRL_GET_TIME_LENGTH: |
19207
c636a4e9565a
Do not treat AV_NOPTS_VALUE as a valid duration value.
reimar
parents:
19160
diff
changeset
|
397 if (priv->avfc->duration == 0 || priv->avfc->duration == AV_NOPTS_VALUE) |
12164 | 398 return DEMUXER_CTRL_DONTKNOW; |
399 | |
16346
6ff303d2876b
Make -identify's 'ID_LENGTH=' print a float and not an integer.. The
ods15
parents:
16175
diff
changeset
|
400 *((double *)arg) = (double)priv->avfc->duration / AV_TIME_BASE; |
12164 | 401 return DEMUXER_CTRL_OK; |
402 | |
403 case DEMUXER_CTRL_GET_PERCENT_POS: | |
19207
c636a4e9565a
Do not treat AV_NOPTS_VALUE as a valid duration value.
reimar
parents:
19160
diff
changeset
|
404 if (priv->avfc->duration == 0 || priv->avfc->duration == AV_NOPTS_VALUE) |
12164 | 405 return DEMUXER_CTRL_DONTKNOW; |
406 | |
19160
ccb42ce33c23
Take start time into consideration when calculation percentage position
reimar
parents:
19073
diff
changeset
|
407 *((int *)arg) = (int)((priv->last_pts - priv->avfc->start_time)*100 / priv->avfc->duration); |
12168 | 408 return DEMUXER_CTRL_OK; |
18762 | 409 case DEMUXER_CTRL_SWITCH_AUDIO: |
410 { | |
411 int id = *((int*)arg); | |
412 int newid = -2; | |
413 int i, curridx = -2; | |
414 | |
415 if(demuxer->audio->id == -2) | |
416 return DEMUXER_CTRL_NOTIMPL; | |
417 for(i = 0; i < priv->audio_streams; i++) | |
418 { | |
419 if(priv->astreams[i] == demuxer->audio->id) //current stream id | |
420 { | |
421 curridx = i; | |
422 break; | |
423 } | |
424 } | |
425 | |
426 if(id < 0) | |
427 { | |
428 i = (curridx + 1) % priv->audio_streams; | |
429 newid = priv->astreams[i]; | |
430 } | |
431 else | |
432 { | |
433 for(i = 0; i < priv->audio_streams; i++) | |
434 { | |
435 if(priv->astreams[i] == id) | |
436 { | |
437 newid = id; | |
438 break; | |
439 } | |
440 } | |
441 } | |
442 if(newid == -2 || i == curridx) | |
443 return DEMUXER_CTRL_NOTIMPL; | |
444 else | |
445 { | |
446 ds_free_packs(demuxer->audio); | |
447 priv->avfc->streams[demuxer->audio->id]->discard = AVDISCARD_ALL; | |
448 *((int*)arg) = demuxer->audio->id = newid; | |
449 priv->avfc->streams[newid]->discard = AVDISCARD_NONE; | |
450 return DEMUXER_CTRL_OK; | |
451 } | |
452 } | |
12164 | 453 default: |
454 return DEMUXER_CTRL_NOTIMPL; | |
455 } | |
456 } | |
457 | |
16175 | 458 static void demux_close_lavf(demuxer_t *demuxer) |
12164 | 459 { |
460 lavf_priv_t* priv = demuxer->priv; | |
461 if (priv){ | |
12304
434242b0706c
fix possible segfault on lavf demuxer patch by (adland <adland123 at yahoo dot com>)
michael
parents:
12168
diff
changeset
|
462 if(priv->avfc) |
434242b0706c
fix possible segfault on lavf demuxer patch by (adland <adland123 at yahoo dot com>)
michael
parents:
12168
diff
changeset
|
463 { |
434242b0706c
fix possible segfault on lavf demuxer patch by (adland <adland123 at yahoo dot com>)
michael
parents:
12168
diff
changeset
|
464 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
|
465 } |
12164 | 466 free(priv); demuxer->priv= NULL; |
467 } | |
468 } | |
469 | |
16175 | 470 |
471 demuxer_desc_t demuxer_desc_lavf = { | |
472 "libavformat demuxer", | |
473 "lavf", | |
474 "libavformat", | |
475 "Michael Niedermayer", | |
476 "supports many formats, requires libavformat", | |
477 DEMUXER_TYPE_LAVF, | |
478 0, // Check after other demuxer | |
479 lavf_check_file, | |
480 demux_lavf_fill_buffer, | |
481 demux_open_lavf, | |
482 demux_close_lavf, | |
483 demux_seek_lavf, | |
484 demux_lavf_control | |
485 }; | |
486 |