Mercurial > mplayer.hg
annotate libmpdemux/demux_lavf.c @ 21995:f615c862f862
Remove ff_gcd prototype and include avutil.h instead where it is defined.
author | reimar |
---|---|
date | Thu, 25 Jan 2007 10:49:43 +0000 |
parents | d9494ca70ca7 |
children | b149aa896f8d |
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> | |
19611 | 22 #include <limits.h> |
12164 | 23 |
24 #include "config.h" | |
25 #include "mp_msg.h" | |
26 // #include "help_mp.h" | |
27 | |
28 #include "stream.h" | |
29 #include "demuxer.h" | |
30 #include "stheader.h" | |
19598 | 31 #include "m_option.h" |
12164 | 32 |
17354 | 33 #ifdef USE_LIBAVFORMAT_SO |
34 #include <ffmpeg/avformat.h> | |
21995
f615c862f862
Remove ff_gcd prototype and include avutil.h instead where it is defined.
reimar
parents:
21966
diff
changeset
|
35 #include <ffmpeg/avutil.h> |
19598 | 36 #include <ffmpeg/opt.h> |
17354 | 37 #else |
12164 | 38 #include "avformat.h" |
21995
f615c862f862
Remove ff_gcd prototype and include avutil.h instead where it is defined.
reimar
parents:
21966
diff
changeset
|
39 #include "avutil.h" |
12164 | 40 #include "avi.h" |
19598 | 41 #include "opt.h" |
17354 | 42 #endif |
21822
fc4ce8a91a2e
Include "internal" libavformat/riff.h also when dynamic libavformat is used
reimar
parents:
21779
diff
changeset
|
43 #include "riff.h" |
12164 | 44 |
45 #define PROBE_BUF_SIZE 2048 | |
46 | |
18775 | 47 extern char *audio_lang; |
19598 | 48 static unsigned int opt_probesize = 0; |
49 | |
50 m_option_t lavfdopts_conf[] = { | |
51 {"probesize", &(opt_probesize), CONF_TYPE_INT, CONF_RANGE, 32, INT_MAX, NULL}, | |
52 {NULL, NULL, 0, 0, 0, 0, NULL} | |
53 }; | |
54 | |
18775 | 55 |
12164 | 56 typedef struct lavf_priv_t{ |
57 AVInputFormat *avif; | |
58 AVFormatContext *avfc; | |
59 ByteIOContext pb; | |
60 int audio_streams; | |
61 int video_streams; | |
12168 | 62 int64_t last_pts; |
18762 | 63 int astreams[MAX_A_STREAMS]; |
21100
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
64 int vstreams[MAX_V_STREAMS]; |
12164 | 65 }lavf_priv_t; |
66 | |
17977
f70772d02eaa
Convert printfs in aviprint.c to mp_msg and give the information printing
diego
parents:
17932
diff
changeset
|
67 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
|
68 extern void print_video_header(BITMAPINFOHEADER *h, int verbose_level); |
12164 | 69 |
21966
d9494ca70ca7
Simplify by using av_codec_get_id and include riff.h only in demux_lavf.c
reimar
parents:
21962
diff
changeset
|
70 static const AVCodecTag mp_wav_tags[] = { |
20944
20910582789d
cosmetics: Restore alphabetical order, align both tables.
diego
parents:
20942
diff
changeset
|
71 { CODEC_ID_ADPCM_4XM, MKTAG('4', 'X', 'M', 'A')}, |
20910582789d
cosmetics: Restore alphabetical order, align both tables.
diego
parents:
20942
diff
changeset
|
72 { CODEC_ID_ADPCM_EA, MKTAG('A', 'D', 'E', 'A')}, |
20910582789d
cosmetics: Restore alphabetical order, align both tables.
diego
parents:
20942
diff
changeset
|
73 { CODEC_ID_ADPCM_IMA_WS, MKTAG('A', 'I', 'W', 'S')}, |
21779 | 74 { CODEC_ID_AMR_NB, MKTAG('n', 'b', 0, 0)}, |
20944
20910582789d
cosmetics: Restore alphabetical order, align both tables.
diego
parents:
20942
diff
changeset
|
75 { CODEC_ID_DSICINAUDIO, MKTAG('D', 'C', 'I', 'A')}, |
20910582789d
cosmetics: Restore alphabetical order, align both tables.
diego
parents:
20942
diff
changeset
|
76 { CODEC_ID_INTERPLAY_DPCM, MKTAG('I', 'N', 'P', 'A')}, |
21763
43c8f1aa82bb
add support for musepack native decoder from ffmpeg (require -demuxer lavf)
aurel
parents:
21568
diff
changeset
|
77 { CODEC_ID_MUSEPACK7, MKTAG('M', 'P', 'C', ' ')}, |
20944
20910582789d
cosmetics: Restore alphabetical order, align both tables.
diego
parents:
20942
diff
changeset
|
78 { CODEC_ID_PCM_S24BE, MKTAG('i', 'n', '2', '4')}, |
20910582789d
cosmetics: Restore alphabetical order, align both tables.
diego
parents:
20942
diff
changeset
|
79 { CODEC_ID_PCM_S8, MKTAG('t', 'w', 'o', 's')}, |
20910582789d
cosmetics: Restore alphabetical order, align both tables.
diego
parents:
20942
diff
changeset
|
80 { CODEC_ID_ROQ_DPCM, MKTAG('R', 'o', 'Q', 'A')}, |
20910582789d
cosmetics: Restore alphabetical order, align both tables.
diego
parents:
20942
diff
changeset
|
81 { CODEC_ID_SHORTEN, MKTAG('s', 'h', 'r', 'n')}, |
20910582789d
cosmetics: Restore alphabetical order, align both tables.
diego
parents:
20942
diff
changeset
|
82 { CODEC_ID_TTA, MKTAG('T', 'T', 'A', '1')}, |
20910582789d
cosmetics: Restore alphabetical order, align both tables.
diego
parents:
20942
diff
changeset
|
83 { CODEC_ID_WAVPACK, MKTAG('W', 'V', 'P', 'K')}, |
21362 | 84 { CODEC_ID_WESTWOOD_SND1, MKTAG('S', 'N', 'D', '1')}, |
20990 | 85 { CODEC_ID_XAN_DPCM, MKTAG('A', 'x', 'a', 'n')}, |
20733
404fb439acba
Add our own CODEC_ID -> fourcc translation tables so we do not need
reimar
parents:
20070
diff
changeset
|
86 { 0, 0 }, |
404fb439acba
Add our own CODEC_ID -> fourcc translation tables so we do not need
reimar
parents:
20070
diff
changeset
|
87 }; |
404fb439acba
Add our own CODEC_ID -> fourcc translation tables so we do not need
reimar
parents:
20070
diff
changeset
|
88 |
21966
d9494ca70ca7
Simplify by using av_codec_get_id and include riff.h only in demux_lavf.c
reimar
parents:
21962
diff
changeset
|
89 const struct AVCodecTag *mp_wav_taglists[] = {codec_wav_tags, mp_wav_tags, 0}; |
d9494ca70ca7
Simplify by using av_codec_get_id and include riff.h only in demux_lavf.c
reimar
parents:
21962
diff
changeset
|
90 |
d9494ca70ca7
Simplify by using av_codec_get_id and include riff.h only in demux_lavf.c
reimar
parents:
21962
diff
changeset
|
91 static const AVCodecTag mp_bmp_tags[] = { |
20940 | 92 { CODEC_ID_DSICINVIDEO, MKTAG('D', 'C', 'I', 'V')}, |
20963 | 93 { CODEC_ID_FLIC, MKTAG('F', 'L', 'I', 'C')}, |
20980
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20963
diff
changeset
|
94 { CODEC_ID_IDCIN, MKTAG('I', 'D', 'C', 'I')}, |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20963
diff
changeset
|
95 { CODEC_ID_INTERPLAY_VIDEO, MKTAG('I', 'N', 'P', 'V')}, |
20942
2093d87ed14b
support for RoQ video and audio through libavformat
diego
parents:
20941
diff
changeset
|
96 { CODEC_ID_ROQ, MKTAG('R', 'o', 'Q', 'V')}, |
20933 | 97 { CODEC_ID_TIERTEXSEQVIDEO, MKTAG('T', 'S', 'E', 'Q')}, |
20935
4a8c67e44c7f
cosmetics: alphabetical order and prettyprinting for the CodecTag table
diego
parents:
20934
diff
changeset
|
98 { CODEC_ID_VMDVIDEO, MKTAG('V', 'M', 'D', 'V')}, |
20980
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20963
diff
changeset
|
99 { CODEC_ID_WS_VQA, MKTAG('V', 'Q', 'A', 'V')}, |
20935
4a8c67e44c7f
cosmetics: alphabetical order and prettyprinting for the CodecTag table
diego
parents:
20934
diff
changeset
|
100 { CODEC_ID_XAN_WC3, MKTAG('W', 'C', '3', 'V')}, |
20733
404fb439acba
Add our own CODEC_ID -> fourcc translation tables so we do not need
reimar
parents:
20070
diff
changeset
|
101 { 0, 0 }, |
404fb439acba
Add our own CODEC_ID -> fourcc translation tables so we do not need
reimar
parents:
20070
diff
changeset
|
102 }; |
404fb439acba
Add our own CODEC_ID -> fourcc translation tables so we do not need
reimar
parents:
20070
diff
changeset
|
103 |
21966
d9494ca70ca7
Simplify by using av_codec_get_id and include riff.h only in demux_lavf.c
reimar
parents:
21962
diff
changeset
|
104 const struct AVCodecTag *mp_bmp_taglists[] = {codec_bmp_tags, mp_bmp_tags, 0}; |
d9494ca70ca7
Simplify by using av_codec_get_id and include riff.h only in demux_lavf.c
reimar
parents:
21962
diff
changeset
|
105 |
12164 | 106 static int mp_open(URLContext *h, const char *filename, int flags){ |
107 return 0; | |
108 } | |
109 | |
110 static int mp_read(URLContext *h, unsigned char *buf, int size){ | |
111 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
|
112 int ret; |
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
113 |
12164 | 114 if(stream_eof(stream)) //needed? |
115 return -1; | |
12165
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
116 ret=stream_read(stream, buf, size); |
12166 | 117 |
12165
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
118 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
|
119 return ret; |
12164 | 120 } |
121 | |
122 static int mp_write(URLContext *h, unsigned char *buf, int size){ | |
123 return -1; | |
124 } | |
125 | |
126 static offset_t mp_seek(URLContext *h, offset_t pos, int whence){ | |
127 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
|
128 |
6ae21c78ed8d
libavformat really doesnt like it that the streams get stuck if the end is reached
michael
parents:
12164
diff
changeset
|
129 mp_msg(MSGT_HEADER,MSGL_DBG2,"mp_seek(%p, %d, %d)\n", h, (int)pos, whence); |
12164 | 130 if(whence == SEEK_CUR) |
131 pos +=stream_tell(stream); | |
132 else if(whence == SEEK_END) | |
133 pos += stream->end_pos; | |
134 else if(whence != SEEK_SET) | |
135 return -1; | |
136 | |
12167 | 137 if(pos<stream->end_pos && stream->eof) |
12166 | 138 stream_reset(stream); |
12164 | 139 if(stream_seek(stream, pos)==0) |
140 return -1; | |
12166 | 141 |
12164 | 142 return pos; |
143 } | |
144 | |
145 static int mp_close(URLContext *h){ | |
146 return 0; | |
147 } | |
148 | |
149 static URLProtocol mp_protocol = { | |
150 "mp", | |
151 mp_open, | |
152 mp_read, | |
153 mp_write, | |
154 mp_seek, | |
155 mp_close, | |
156 }; | |
157 | |
16175 | 158 static int lavf_check_file(demuxer_t *demuxer){ |
12164 | 159 AVProbeData avpd; |
160 uint8_t buf[PROBE_BUF_SIZE]; | |
161 lavf_priv_t *priv; | |
162 | |
163 if(!demuxer->priv) | |
164 demuxer->priv=calloc(sizeof(lavf_priv_t),1); | |
165 priv= demuxer->priv; | |
166 | |
167 av_register_all(); | |
168 | |
15819 | 169 if(stream_read(demuxer->stream, buf, PROBE_BUF_SIZE)!=PROBE_BUF_SIZE) |
170 return 0; | |
12164 | 171 avpd.filename= demuxer->stream->url; |
172 avpd.buf= buf; | |
173 avpd.buf_size= PROBE_BUF_SIZE; | |
174 | |
175 priv->avif= av_probe_input_format(&avpd, 1); | |
176 if(!priv->avif){ | |
177 mp_msg(MSGT_HEADER,MSGL_V,"LAVF_check: no clue about this gibberish!\n"); | |
178 return 0; | |
179 }else | |
180 mp_msg(MSGT_HEADER,MSGL_V,"LAVF_check: %s\n", priv->avif->long_name); | |
181 | |
16175 | 182 return DEMUXER_TYPE_LAVF; |
12164 | 183 } |
184 | |
16175 | 185 static demuxer_t* demux_open_lavf(demuxer_t *demuxer){ |
12164 | 186 AVFormatContext *avfc; |
187 AVFormatParameters ap; | |
19598 | 188 AVOption *opt; |
12164 | 189 lavf_priv_t *priv= demuxer->priv; |
15011 | 190 int i,g; |
12164 | 191 char mp_filename[256]="mp:"; |
192 | |
193 memset(&ap, 0, sizeof(AVFormatParameters)); | |
194 | |
195 stream_seek(demuxer->stream, 0); | |
196 | |
197 register_protocol(&mp_protocol); | |
198 | |
19598 | 199 avfc = av_alloc_format_context(); |
21548 | 200 |
201 if (correct_pts) | |
202 avfc->flags |= AVFMT_FLAG_GENPTS; | |
21568 | 203 if (index_mode == 0) |
204 avfc->flags |= AVFMT_FLAG_IGNIDX; | |
21548 | 205 |
19598 | 206 ap.prealloced_context = 1; |
207 if(opt_probesize) { | |
208 double d = (double) opt_probesize; | |
209 opt = av_set_double(avfc, "probesize", opt_probesize); | |
210 if(!opt) mp_msg(MSGT_HEADER,MSGL_ERR, "demux_lavf, couldn't set option probesize to %.3f\r\n", d); | |
211 } | |
212 | |
12463 | 213 if(demuxer->stream->url) |
214 strncpy(mp_filename + 3, demuxer->stream->url, sizeof(mp_filename)-3); | |
215 else | |
216 strncpy(mp_filename + 3, "foobar.dummy", sizeof(mp_filename)-3); | |
12164 | 217 |
218 url_fopen(&priv->pb, mp_filename, URL_RDONLY); | |
219 | |
220 ((URLContext*)(priv->pb.opaque))->priv_data= demuxer->stream; | |
221 | |
222 if(av_open_input_stream(&avfc, &priv->pb, mp_filename, priv->avif, &ap)<0){ | |
223 mp_msg(MSGT_HEADER,MSGL_ERR,"LAVF_header: av_open_input_stream() failed\n"); | |
16175 | 224 return NULL; |
12164 | 225 } |
226 | |
227 priv->avfc= avfc; | |
228 | |
229 if(av_find_stream_info(avfc) < 0){ | |
230 mp_msg(MSGT_HEADER,MSGL_ERR,"LAVF_header: av_find_stream_info() failed\n"); | |
16175 | 231 return NULL; |
12164 | 232 } |
233 | |
12167 | 234 if(avfc->title [0]) demux_info_add(demuxer, "name" , avfc->title ); |
235 if(avfc->author [0]) demux_info_add(demuxer, "author" , avfc->author ); | |
236 if(avfc->copyright[0]) demux_info_add(demuxer, "copyright", avfc->copyright); | |
237 if(avfc->comment [0]) demux_info_add(demuxer, "comments" , avfc->comment ); | |
238 if(avfc->album [0]) demux_info_add(demuxer, "album" , avfc->album ); | |
239 // if(avfc->year ) demux_info_add(demuxer, "year" , avfc->year ); | |
240 // if(avfc->track ) demux_info_add(demuxer, "track" , avfc->track ); | |
241 if(avfc->genre [0]) demux_info_add(demuxer, "genre" , avfc->genre ); | |
12164 | 242 |
243 for(i=0; i<avfc->nb_streams; i++){ | |
244 AVStream *st= avfc->streams[i]; | |
16000 | 245 AVCodecContext *codec= st->codec; |
19073
8b52dad54b1d
Remove #if LIBAVCODEC_BUILD >= XXX and #if LIBAVFORMAT_BUILD >= XXX jungle.
diego
parents:
19062
diff
changeset
|
246 |
12164 | 247 switch(codec->codec_type){ |
248 case CODEC_TYPE_AUDIO:{ | |
249 WAVEFORMATEX *wf= calloc(sizeof(WAVEFORMATEX) + codec->extradata_size, 1); | |
18985 | 250 sh_audio_t* sh_audio; |
18762 | 251 if(priv->audio_streams >= MAX_A_STREAMS) |
252 break; | |
18985 | 253 sh_audio=new_sh_audio(demuxer, i); |
18762 | 254 if(!sh_audio) |
255 break; | |
256 priv->astreams[priv->audio_streams] = i; | |
12164 | 257 priv->audio_streams++; |
258 if(!codec->codec_tag) | |
21966
d9494ca70ca7
Simplify by using av_codec_get_id and include riff.h only in demux_lavf.c
reimar
parents:
21962
diff
changeset
|
259 codec->codec_tag= av_codec_get_tag(mp_wav_taglists, codec->codec_id); |
12164 | 260 wf->wFormatTag= codec->codec_tag; |
261 wf->nChannels= codec->channels; | |
262 wf->nSamplesPerSec= codec->sample_rate; | |
263 wf->nAvgBytesPerSec= codec->bit_rate/8; | |
264 wf->nBlockAlign= codec->block_align; | |
265 wf->wBitsPerSample= codec->bits_per_sample; | |
266 wf->cbSize= codec->extradata_size; | |
267 if(codec->extradata_size){ | |
268 memcpy( | |
269 wf + 1, | |
270 codec->extradata, | |
271 codec->extradata_size); | |
272 } | |
273 sh_audio->wf= wf; | |
15011 | 274 sh_audio->audio.dwSampleSize= codec->block_align; |
275 if(codec->frame_size && codec->sample_rate){ | |
276 sh_audio->audio.dwScale=codec->frame_size; | |
277 sh_audio->audio.dwRate= codec->sample_rate; | |
278 }else{ | |
279 sh_audio->audio.dwScale= codec->block_align ? codec->block_align*8 : 8; | |
280 sh_audio->audio.dwRate = codec->bit_rate; | |
281 } | |
282 g= ff_gcd(sh_audio->audio.dwScale, sh_audio->audio.dwRate); | |
283 sh_audio->audio.dwScale /= g; | |
284 sh_audio->audio.dwRate /= g; | |
285 // 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 | 286 sh_audio->ds= demuxer->audio; |
287 sh_audio->format= codec->codec_tag; | |
288 sh_audio->channels= codec->channels; | |
289 sh_audio->samplerate= codec->sample_rate; | |
15007 | 290 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
|
291 switch (codec->codec_id) { |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
292 case CODEC_ID_PCM_S8: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
293 case CODEC_ID_PCM_U8: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
294 sh_audio->samplesize = 1; |
16135 | 295 break; |
16134
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
296 case CODEC_ID_PCM_S16LE: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
297 case CODEC_ID_PCM_S16BE: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
298 case CODEC_ID_PCM_U16LE: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
299 case CODEC_ID_PCM_U16BE: |
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
300 sh_audio->samplesize = 2; |
16135 | 301 break; |
302 case CODEC_ID_PCM_ALAW: | |
303 sh_audio->format = 0x6; | |
304 break; | |
305 case CODEC_ID_PCM_MULAW: | |
306 sh_audio->format = 0x7; | |
307 break; | |
16134
a1fd1a7eeb35
lavf demuxer with raw PCM fix (and a related hang)
reimar
parents:
16000
diff
changeset
|
308 } |
17977
f70772d02eaa
Convert printfs in aviprint.c to mp_msg and give the information printing
diego
parents:
17932
diff
changeset
|
309 if( mp_msg_test(MSGT_HEADER,MSGL_V) ) print_wave_header(sh_audio->wf, MSGL_V); |
18775 | 310 if((audio_lang && st->language[0] && !strncmp(audio_lang, st->language, 3)) |
311 || (demuxer->audio->id == i || demuxer->audio->id == -1) | |
312 ) { | |
313 demuxer->audio->id = i; | |
314 demuxer->audio->sh= demuxer->a_streams[i]; | |
315 } | |
316 else | |
15004 | 317 st->discard= AVDISCARD_ALL; |
12164 | 318 break;} |
319 case CODEC_TYPE_VIDEO:{ | |
21100
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
320 sh_video_t* sh_video; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
321 BITMAPINFOHEADER *bih; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
322 if(priv->video_streams >= MAX_V_STREAMS) |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
323 break; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
324 sh_video=new_sh_video(demuxer, i); |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
325 if(!sh_video) break; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
326 priv->vstreams[priv->video_streams] = i; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
327 priv->video_streams++; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
328 bih=calloc(sizeof(BITMAPINFOHEADER) + codec->extradata_size,1); |
12164 | 329 |
330 if(!codec->codec_tag) | |
21966
d9494ca70ca7
Simplify by using av_codec_get_id and include riff.h only in demux_lavf.c
reimar
parents:
21962
diff
changeset
|
331 codec->codec_tag= av_codec_get_tag(mp_bmp_taglists, codec->codec_id); |
12164 | 332 bih->biSize= sizeof(BITMAPINFOHEADER) + codec->extradata_size; |
333 bih->biWidth= codec->width; | |
334 bih->biHeight= codec->height; | |
335 bih->biBitCount= codec->bits_per_sample; | |
336 bih->biSizeImage = bih->biWidth * bih->biHeight * bih->biBitCount/8; | |
337 bih->biCompression= codec->codec_tag; | |
338 sh_video->bih= bih; | |
339 sh_video->disp_w= codec->width; | |
340 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
|
341 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
|
342 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
|
343 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
|
344 } else { |
15308 | 345 sh_video->video.dwRate= codec->time_base.den; |
346 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
|
347 } |
17556 | 348 sh_video->fps=av_q2d(st->r_frame_rate); |
349 sh_video->frametime=1/av_q2d(st->r_frame_rate); | |
12164 | 350 sh_video->format = bih->biCompression; |
12167 | 351 sh_video->aspect= codec->width * codec->sample_aspect_ratio.num |
352 / (float)(codec->height * codec->sample_aspect_ratio.den); | |
15007 | 353 sh_video->i_bps= codec->bit_rate/8; |
12167 | 354 mp_msg(MSGT_DEMUX,MSGL_DBG2,"aspect= %d*%d/(%d*%d)\n", |
355 codec->width, codec->sample_aspect_ratio.num, | |
356 codec->height, codec->sample_aspect_ratio.den); | |
357 | |
12164 | 358 sh_video->ds= demuxer->video; |
359 if(codec->extradata_size) | |
360 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
|
361 if( mp_msg_test(MSGT_HEADER,MSGL_V) ) print_video_header(sh_video->bih, MSGL_V); |
12164 | 362 /* short biPlanes; |
363 int biXPelsPerMeter; | |
364 int biYPelsPerMeter; | |
365 int biClrUsed; | |
366 int biClrImportant;*/ | |
15004 | 367 if(demuxer->video->id != i && demuxer->video->id != -1) |
368 st->discard= AVDISCARD_ALL; | |
369 else{ | |
370 demuxer->video->id = i; | |
371 demuxer->video->sh= demuxer->v_streams[i]; | |
372 } | |
12164 | 373 break;} |
15004 | 374 default: |
375 st->discard= AVDISCARD_ALL; | |
12164 | 376 } |
377 } | |
378 | |
379 mp_msg(MSGT_HEADER,MSGL_V,"LAVF: %d audio and %d video streams found\n",priv->audio_streams,priv->video_streams); | |
13749 | 380 mp_msg(MSGT_HEADER,MSGL_V,"LAVF: build %d\n", LIBAVFORMAT_BUILD); |
12164 | 381 if(!priv->audio_streams) demuxer->audio->id=-2; // nosound |
382 // else if(best_audio > 0 && demuxer->audio->id == -1) demuxer->audio->id=best_audio; | |
383 if(!priv->video_streams){ | |
384 if(!priv->audio_streams){ | |
385 mp_msg(MSGT_HEADER,MSGL_ERR,"LAVF: no audio or video headers found - broken file?\n"); | |
16175 | 386 return NULL; |
12164 | 387 } |
388 demuxer->video->id=-2; // audio-only | |
389 } //else if (best_video > 0 && demuxer->video->id == -1) demuxer->video->id = best_video; | |
390 | |
16175 | 391 return demuxer; |
12164 | 392 } |
393 | |
16175 | 394 static int demux_lavf_fill_buffer(demuxer_t *demux, demux_stream_t *dsds){ |
12164 | 395 lavf_priv_t *priv= demux->priv; |
396 AVPacket pkt; | |
397 demux_packet_t *dp; | |
398 demux_stream_t *ds; | |
399 int id; | |
400 mp_msg(MSGT_DEMUX,MSGL_DBG2,"demux_lavf_fill_buffer()\n"); | |
401 | |
402 demux->filepos=stream_tell(demux->stream); | |
403 | |
404 if(av_read_frame(priv->avfc, &pkt) < 0) | |
405 return 0; | |
406 | |
407 id= pkt.stream_index; | |
408 | |
409 if(id==demux->audio->id){ | |
410 // audio | |
411 ds=demux->audio; | |
412 if(!ds->sh){ | |
413 ds->sh=demux->a_streams[id]; | |
414 mp_msg(MSGT_DEMUX,MSGL_V,"Auto-selected LAVF audio ID = %d\n",ds->id); | |
415 } | |
416 } else if(id==demux->video->id){ | |
417 // video | |
418 ds=demux->video; | |
419 if(!ds->sh){ | |
420 ds->sh=demux->v_streams[id]; | |
421 mp_msg(MSGT_DEMUX,MSGL_V,"Auto-selected LAVF video ID = %d\n",ds->id); | |
422 } | |
14611 | 423 } else { |
424 av_free_packet(&pkt); | |
425 return 1; | |
426 } | |
12164 | 427 |
428 if(0/*pkt.destruct == av_destruct_packet*/){ | |
429 //ok kids, dont try this at home :) | |
19062
83c3afeab35d
drops casts from void * on malloc/calloc from libmpdemux code
reynaldo
parents:
18985
diff
changeset
|
430 dp=malloc(sizeof(demux_packet_t)); |
12164 | 431 dp->len=pkt.size; |
432 dp->next=NULL; | |
433 dp->refcount=1; | |
434 dp->master=NULL; | |
435 dp->buffer=pkt.data; | |
436 pkt.destruct= NULL; | |
437 }else{ | |
438 dp=new_demux_packet(pkt.size); | |
439 memcpy(dp->buffer, pkt.data, pkt.size); | |
440 av_free_packet(&pkt); | |
441 } | |
442 | |
13747 | 443 if(pkt.pts != AV_NOPTS_VALUE){ |
15308 | 444 dp->pts=pkt.pts * av_q2d(priv->avfc->streams[id]->time_base); |
445 priv->last_pts= dp->pts * AV_TIME_BASE; | |
13747 | 446 } |
12164 | 447 dp->pos=demux->filepos; |
448 dp->flags= !!(pkt.flags&PKT_FLAG_KEY); | |
449 // append packet to DS stream: | |
450 ds_add_packet(ds,dp); | |
451 return 1; | |
452 } | |
453 | |
17636 | 454 static void demux_seek_lavf(demuxer_t *demuxer, float rel_seek_secs, float audio_delay, int flags){ |
12168 | 455 lavf_priv_t *priv = demuxer->priv; |
20070 | 456 int avsflags = 0; |
17636 | 457 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
|
458 |
20070 | 459 if (flags & 1) // absolute seek |
460 priv->last_pts = priv->avfc->start_time; | |
461 if (flags & 2) { // percent seek | |
462 if (priv->avfc->duration == 0 || priv->avfc->duration == AV_NOPTS_VALUE) | |
463 return; | |
464 priv->last_pts += rel_seek_secs * priv->avfc->duration; | |
465 } else { | |
466 priv->last_pts += rel_seek_secs * AV_TIME_BASE; | |
467 if (rel_seek_secs < 0) avsflags = AVSEEK_FLAG_BACKWARD; | |
468 } | |
469 av_seek_frame(priv->avfc, -1, priv->last_pts, avsflags); | |
12164 | 470 } |
471 | |
16175 | 472 static int demux_lavf_control(demuxer_t *demuxer, int cmd, void *arg) |
12164 | 473 { |
474 lavf_priv_t *priv = demuxer->priv; | |
475 | |
476 switch (cmd) { | |
12168 | 477 case DEMUXER_CTRL_GET_TIME_LENGTH: |
19207
c636a4e9565a
Do not treat AV_NOPTS_VALUE as a valid duration value.
reimar
parents:
19160
diff
changeset
|
478 if (priv->avfc->duration == 0 || priv->avfc->duration == AV_NOPTS_VALUE) |
12164 | 479 return DEMUXER_CTRL_DONTKNOW; |
480 | |
16346
6ff303d2876b
Make -identify's 'ID_LENGTH=' print a float and not an integer.. The
ods15
parents:
16175
diff
changeset
|
481 *((double *)arg) = (double)priv->avfc->duration / AV_TIME_BASE; |
12164 | 482 return DEMUXER_CTRL_OK; |
483 | |
484 case DEMUXER_CTRL_GET_PERCENT_POS: | |
19207
c636a4e9565a
Do not treat AV_NOPTS_VALUE as a valid duration value.
reimar
parents:
19160
diff
changeset
|
485 if (priv->avfc->duration == 0 || priv->avfc->duration == AV_NOPTS_VALUE) |
12164 | 486 return DEMUXER_CTRL_DONTKNOW; |
487 | |
19160
ccb42ce33c23
Take start time into consideration when calculation percentage position
reimar
parents:
19073
diff
changeset
|
488 *((int *)arg) = (int)((priv->last_pts - priv->avfc->start_time)*100 / priv->avfc->duration); |
12168 | 489 return DEMUXER_CTRL_OK; |
18762 | 490 case DEMUXER_CTRL_SWITCH_AUDIO: |
21100
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
491 case DEMUXER_CTRL_SWITCH_VIDEO: |
18762 | 492 { |
493 int id = *((int*)arg); | |
494 int newid = -2; | |
495 int i, curridx = -2; | |
21100
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
496 int nstreams, *pstreams; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
497 demux_stream_t *ds; |
18762 | 498 |
21100
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
499 if(cmd == DEMUXER_CTRL_SWITCH_VIDEO) |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
500 { |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
501 ds = demuxer->video; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
502 nstreams = priv->video_streams; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
503 pstreams = priv->vstreams; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
504 } |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
505 else |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
506 { |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
507 ds = demuxer->audio; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
508 nstreams = priv->audio_streams; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
509 pstreams = priv->astreams; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
510 } |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
511 if(ds->id == -2) |
18762 | 512 return DEMUXER_CTRL_NOTIMPL; |
21100
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
513 for(i = 0; i < nstreams; i++) |
18762 | 514 { |
21100
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
515 if(pstreams[i] == ds->id) //current stream id |
18762 | 516 { |
517 curridx = i; | |
518 break; | |
519 } | |
520 } | |
521 | |
522 if(id < 0) | |
523 { | |
21100
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
524 i = (curridx + 1) % nstreams; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
525 newid = pstreams[i]; |
18762 | 526 } |
527 else | |
528 { | |
21100
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
529 for(i = 0; i < nstreams; i++) |
18762 | 530 { |
21100
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
531 if(pstreams[i] == id) |
18762 | 532 { |
533 newid = id; | |
534 break; | |
535 } | |
536 } | |
537 } | |
538 if(newid == -2 || i == curridx) | |
539 return DEMUXER_CTRL_NOTIMPL; | |
540 else | |
541 { | |
21100
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
542 ds_free_packs(ds); |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
543 priv->avfc->streams[ds->id]->discard = AVDISCARD_ALL; |
6bc989360c8b
check we aren't short of sh_videos before allocating another one
nicodvb
parents:
20990
diff
changeset
|
544 *((int*)arg) = ds->id = newid; |
18762 | 545 priv->avfc->streams[newid]->discard = AVDISCARD_NONE; |
546 return DEMUXER_CTRL_OK; | |
547 } | |
548 } | |
12164 | 549 default: |
550 return DEMUXER_CTRL_NOTIMPL; | |
551 } | |
552 } | |
553 | |
16175 | 554 static void demux_close_lavf(demuxer_t *demuxer) |
12164 | 555 { |
556 lavf_priv_t* priv = demuxer->priv; | |
557 if (priv){ | |
12304
434242b0706c
fix possible segfault on lavf demuxer patch by (adland <adland123 at yahoo dot com>)
michael
parents:
12168
diff
changeset
|
558 if(priv->avfc) |
434242b0706c
fix possible segfault on lavf demuxer patch by (adland <adland123 at yahoo dot com>)
michael
parents:
12168
diff
changeset
|
559 { |
434242b0706c
fix possible segfault on lavf demuxer patch by (adland <adland123 at yahoo dot com>)
michael
parents:
12168
diff
changeset
|
560 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
|
561 } |
12164 | 562 free(priv); demuxer->priv= NULL; |
563 } | |
564 } | |
565 | |
16175 | 566 |
567 demuxer_desc_t demuxer_desc_lavf = { | |
568 "libavformat demuxer", | |
569 "lavf", | |
570 "libavformat", | |
571 "Michael Niedermayer", | |
572 "supports many formats, requires libavformat", | |
573 DEMUXER_TYPE_LAVF, | |
574 0, // Check after other demuxer | |
575 lavf_check_file, | |
576 demux_lavf_fill_buffer, | |
577 demux_open_lavf, | |
578 demux_close_lavf, | |
579 demux_seek_lavf, | |
580 demux_lavf_control | |
581 }; | |
582 |