]> git.sesse.net Git - vlc/blob - modules/codec/ffmpeg/demux.c
* ffmpeg/video.c: got rid of the --ffmpeg-truncated option.
[vlc] / modules / codec / ffmpeg / demux.c
1 /*****************************************************************************
2  * demux.c: demuxer using ffmpeg (libavformat).
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@netcourrier.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29
30 #include <vlc/vlc.h>
31 #include <vlc/input.h>
32
33 /* ffmpeg header */
34 #ifdef HAVE_FFMPEG_AVCODEC_H
35 #   include <ffmpeg/avformat.h>
36 #else
37 #   include <avformat.h>
38 #endif
39
40 /* Version checking */
41 #if (LIBAVFORMAT_BUILD >= 4611) && defined(HAVE_LIBAVFORMAT)
42
43 /*****************************************************************************
44  * demux_sys_t: demux descriptor
45  *****************************************************************************/
46 struct demux_sys_t
47 {
48     ByteIOContext   io;
49     int             io_buffer_size;
50     uint8_t        *io_buffer;
51
52     AVInputFormat  *fmt;
53     AVFormatContext *ic;
54     URLContext     url;
55     URLProtocol    prot;
56
57     int             i_tk;
58     es_out_id_t     **tk;
59
60     int64_t     i_pcr;
61     int64_t     i_pcr_inc;
62     int         i_pcr_tk;
63 };
64
65 /*****************************************************************************
66  * Local prototypes
67  *****************************************************************************/
68 static int Demux  ( demux_t *p_demux );
69 static int Control( demux_t *p_demux, int i_query, va_list args );
70
71 static int IORead( void *opaque, uint8_t *buf, int buf_size );
72 static int IOSeek( void *opaque, offset_t offset, int whence );
73
74 /*****************************************************************************
75  * Open
76  *****************************************************************************/
77 int E_(OpenDemux)( vlc_object_t *p_this )
78 {
79     demux_t       *p_demux = (demux_t*)p_this;
80     demux_sys_t   *p_sys;
81     AVProbeData   pd;
82     AVInputFormat *fmt;
83     int i, b_forced;
84
85     b_forced = ( p_demux->psz_demux && *p_demux->psz_demux &&
86                  !strcmp( p_demux->psz_demux, "ffmpeg" ) ) ? 1 : 0;
87
88     /* Init Probe data */
89     pd.filename = p_demux->psz_path;
90     if( ( pd.buf_size = stream_Peek( p_demux->s, &pd.buf, 2048 ) ) <= 0 )
91     {
92         msg_Warn( p_demux, "cannot peek" );
93         return VLC_EGENERIC;
94     }
95
96     /* Should we call it only once ? */
97     av_register_all();
98
99     /* Guess format */
100     if( !( fmt = av_probe_input_format( &pd, 1 ) ) )
101     {
102         msg_Dbg( p_demux, "couldn't guess format" );
103         return VLC_EGENERIC;
104     }
105
106     /* Don't try to handle MPEG unless forced */
107     if( !b_forced &&
108         ( !strcmp( fmt->name, "mpeg" ) ||
109           !strcmp( fmt->name, "vcd" ) ||
110           !strcmp( fmt->name, "vob" ) ||
111           !strcmp( fmt->name, "mpegts" ) ) )
112     {
113         return VLC_EGENERIC;
114     }
115
116     /* Fill p_demux fields */
117     p_demux->pf_demux = Demux;
118     p_demux->pf_control = Control;
119     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
120     p_sys->fmt = fmt;
121     p_sys->i_tk = 0;
122     p_sys->tk = NULL;
123     p_sys->i_pcr_tk = -1;
124
125     /* Create I/O wrapper */
126     p_sys->io_buffer_size = 32768;  /* FIXME */
127     p_sys->io_buffer = malloc( p_sys->io_buffer_size );
128     p_sys->url.priv_data = p_demux;
129     p_sys->url.prot = &p_sys->prot;
130     p_sys->url.prot->name = "VLC I/O wrapper";
131     p_sys->url.prot->url_open = 0;
132     p_sys->url.prot->url_read = IORead;
133     p_sys->url.prot->url_write = 0;
134     p_sys->url.prot->url_seek = IOSeek;
135     p_sys->url.prot->url_close = 0;
136     p_sys->url.prot->next = 0;
137     init_put_byte( &p_sys->io, p_sys->io_buffer, p_sys->io_buffer_size,
138                    0, &p_sys->url, IORead, NULL, IOSeek );
139
140     p_sys->fmt->flags |= AVFMT_NOFILE; /* libavformat must not fopen/fclose */
141
142     /* Open it */
143     if( av_open_input_stream( &p_sys->ic, &p_sys->io, p_demux->psz_path,
144                               p_sys->fmt, NULL ) )
145     {
146         msg_Err( p_demux, "av_open_input_stream failed" );
147         return VLC_EGENERIC;
148     }
149
150     if( av_find_stream_info( p_sys->ic ) )
151     {
152         msg_Err( p_demux, "av_find_stream_info failed" );
153         return VLC_EGENERIC;
154     }
155
156     for( i = 0; i < p_sys->ic->nb_streams; i++ )
157     {
158         AVCodecContext *cc = &p_sys->ic->streams[i]->codec;
159         es_out_id_t  *es;
160         es_format_t  fmt;
161         vlc_fourcc_t fcc;
162
163         if( !E_(GetVlcFourcc)( cc->codec_id, NULL, &fcc, NULL ) )
164             fcc = VLC_FOURCC( 'u', 'n', 'd', 'f' );
165
166         switch( cc->codec_type )
167         {
168         case CODEC_TYPE_AUDIO:
169             es_format_Init( &fmt, AUDIO_ES, fcc );
170             fmt.audio.i_channels = cc->channels;
171             fmt.audio.i_rate = cc->sample_rate;
172             fmt.audio.i_bitspersample = cc->bits_per_sample;
173             fmt.audio.i_blockalign = cc->block_align;
174             break;
175         case CODEC_TYPE_VIDEO:
176             es_format_Init( &fmt, VIDEO_ES, fcc );
177             fmt.video.i_width = cc->width;
178             fmt.video.i_height = cc->height;
179             if( cc->palctrl )
180             {
181                 fmt.video.p_palette = malloc( sizeof(video_palette_t) );
182                 *fmt.video.p_palette = *(video_palette_t *)cc->palctrl;
183             }
184             break;
185         default:
186             break;
187         }
188
189         fmt.i_extra = cc->extradata_size;
190         fmt.p_extra = cc->extradata;
191         es = es_out_Add( p_demux->out, &fmt );
192
193         msg_Dbg( p_demux, "adding es: %s codec = %4.4s",
194                  cc->codec_type == CODEC_TYPE_AUDIO ? "audio" : "video",
195                  (char*)&fcc );
196         TAB_APPEND( p_sys->i_tk, p_sys->tk, es );
197     }
198
199     msg_Dbg( p_demux, "AVFormat supported stream" );
200     msg_Dbg( p_demux, "    - format = %s (%s)",
201              p_sys->fmt->name, p_sys->fmt->long_name );
202     msg_Dbg( p_demux, "    - start time = "I64Fd,
203              ( p_sys->ic->start_time != AV_NOPTS_VALUE ) ?
204              p_sys->ic->start_time * 1000000 / AV_TIME_BASE : -1 );
205     msg_Dbg( p_demux, "    - duration = "I64Fd,
206              ( p_sys->ic->duration != AV_NOPTS_VALUE ) ?
207              p_sys->ic->duration * 1000000 / AV_TIME_BASE : -1 );
208
209     return VLC_SUCCESS;
210 }
211
212 /*****************************************************************************
213  * Close
214  *****************************************************************************/
215 void E_(CloseDemux)( vlc_object_t *p_this )
216 {
217     demux_t     *p_demux = (demux_t*)p_this;
218     demux_sys_t *p_sys = p_demux->p_sys;
219
220     av_close_input_file( p_sys->ic );
221
222     free( p_sys->io_buffer );
223     free( p_sys );
224 }
225
226 /*****************************************************************************
227  * Demux:
228  *****************************************************************************/
229 static int Demux( demux_t *p_demux )
230 {
231     demux_sys_t *p_sys = p_demux->p_sys;
232     AVPacket    pkt;
233     block_t     *p_frame;
234     int64_t     i_start_time;
235
236     /* Read a frame */
237     if( av_read_frame( p_sys->ic, &pkt ) )
238     {
239         return 0;
240     }
241     if( pkt.stream_index < 0 || pkt.stream_index >= p_sys->i_tk )
242     {
243         av_free_packet( &pkt );
244         return 1;
245     }
246     if( ( p_frame = block_New( p_demux, pkt.size ) ) == NULL )
247     {
248         return 0;
249     }
250
251     memcpy( p_frame->p_buffer, pkt.data, pkt.size );
252
253     i_start_time = ( p_sys->ic->start_time != AV_NOPTS_VALUE ) ?
254         p_sys->ic->start_time : 0;
255
256     p_frame->i_dts = ( pkt.dts == AV_NOPTS_VALUE ) ?
257         0 : (pkt.dts - i_start_time) * 1000000 / AV_TIME_BASE;
258     p_frame->i_pts = ( pkt.pts == AV_NOPTS_VALUE ) ?
259         0 : (pkt.pts - i_start_time) * 1000000 / AV_TIME_BASE;
260
261     msg_Dbg( p_demux, "tk[%d] dts="I64Fd" pts="I64Fd,
262              pkt.stream_index, p_frame->i_dts, p_frame->i_pts );
263
264     if( pkt.dts > 0  &&
265         ( pkt.stream_index == p_sys->i_pcr_tk || p_sys->i_pcr_tk < 0 ) )
266     {    
267         p_sys->i_pcr_tk = pkt.stream_index;
268         p_sys->i_pcr = pkt.dts - i_start_time;
269
270         es_out_Control( p_demux->out, ES_OUT_SET_PCR, (int64_t)p_sys->i_pcr );
271     }
272
273     es_out_Send( p_demux->out, p_sys->tk[pkt.stream_index], p_frame );
274     av_free_packet( &pkt );
275     return 1;
276 }
277
278 /*****************************************************************************
279  * Control:
280  *****************************************************************************/
281 static int Control( demux_t *p_demux, int i_query, va_list args )
282 {
283     demux_sys_t *p_sys = p_demux->p_sys;
284     double f, *pf;
285     int64_t i64, *pi64;
286
287     switch( i_query )
288     {
289         case DEMUX_GET_POSITION:
290             pf = (double*) va_arg( args, double* );
291             i64 = stream_Size( p_demux->s );
292             if( i64 > 0 )
293             {
294                 *pf = (double)stream_Tell( p_demux->s ) / (double)i64;
295             }
296             else
297             {
298                 *pf = 0.0;
299             }
300             return VLC_SUCCESS;
301
302         case DEMUX_SET_POSITION:
303             f = (double) va_arg( args, double );
304             i64 = stream_Tell( p_demux->s );
305             if( i64 && p_sys->i_pcr )
306             {
307                 int64_t i_size = stream_Size( p_demux->s );
308
309                 i64 = p_sys->i_pcr * i_size / i64 * f;
310                 if( p_sys->ic->start_time != AV_NOPTS_VALUE )
311                     i64 += p_sys->ic->start_time;
312
313                 msg_Warn( p_demux, "DEMUX_SET_POSITION: "I64Fd, i64 );
314
315                 if( av_seek_frame( p_sys->ic, -1, i64 ) )
316                 {
317                     return VLC_EGENERIC;
318                 }
319                 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
320                 p_sys->i_pcr = -1; /* Invalidate time display */
321             }
322             return VLC_SUCCESS;
323
324         case DEMUX_GET_TIME:
325             pi64 = (int64_t*)va_arg( args, int64_t * );
326             *pi64 = p_sys->i_pcr;
327             return VLC_SUCCESS;
328
329         case DEMUX_SET_TIME:
330             i64 = (int64_t)va_arg( args, int64_t );
331             if( p_sys->ic->start_time != AV_NOPTS_VALUE )
332                 i64 += p_sys->ic->start_time;
333
334             msg_Warn( p_demux, "DEMUX_SET_TIME: "I64Fd, i64 );
335
336             if( av_seek_frame( p_sys->ic, -1, i64 ) < 0 )
337             {
338                 return VLC_EGENERIC;
339             }
340             es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
341             p_sys->i_pcr = -1; /* Invalidate time display */
342             return VLC_SUCCESS;
343
344         default:
345             return VLC_EGENERIC;
346     }
347 }
348
349 /*****************************************************************************
350  * I/O wrappers for libavformat
351  *****************************************************************************/
352 static int IORead( void *opaque, uint8_t *buf, int buf_size )
353 {
354     URLContext *p_url = opaque;
355     demux_t *p_demux = p_url->priv_data;
356     return stream_Read( p_demux->s, buf, buf_size );
357 }
358
359 static int IOSeek( void *opaque, offset_t offset, int whence )
360 {
361     URLContext *p_url = opaque;
362     demux_t *p_demux = p_url->priv_data;
363     int64_t i_absolute;
364
365     msg_Warn( p_demux, "IOSeek offset: "I64Fd", whence: %i", offset, whence );
366
367     switch( whence )
368     {
369         case SEEK_SET:
370             i_absolute = offset;
371             break;
372         case SEEK_CUR:
373             i_absolute = stream_Tell( p_demux->s ) + offset;
374             break;
375         case SEEK_END:
376             i_absolute = stream_Size( p_demux->s ) - offset;
377             break;
378         default:
379             return -1;
380
381     }
382
383     if( stream_Seek( p_demux->s, i_absolute ) )
384     {
385         return -1;
386     }
387
388     return 0;
389 }
390
391 #else /* LIBAVFORMAT_BUILD >= 4611 */
392
393 int E_(OpenDemux)( vlc_object_t *p_this )
394 {
395     return VLC_EGENERIC;
396 }
397
398 void E_(CloseDemux)( vlc_object_t *p_this )
399 {
400 }
401
402 #endif /* LIBAVFORMAT_BUILD >= 4611 */