]> git.sesse.net Git - vlc/blob - modules/demux/avformat/mux.c
AVFormat Muxer : Set codec frame size.
[vlc] / modules / demux / avformat / mux.c
1 /*****************************************************************************
2  * mux.c: muxer using ffmpeg (libavformat).
3  *****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_block.h>
34 #include <vlc_sout.h>
35
36 /* ffmpeg header */
37 #ifdef HAVE_LIBAVFORMAT_AVFORMAT_H
38 #   include <libavformat/avformat.h>
39 #elif defined(HAVE_FFMPEG_AVFORMAT_H)
40 #   include <ffmpeg/avformat.h>
41 #endif
42
43 #include "avformat.h"
44 #include "../../codec/avcodec/avcodec.h"
45 #include "../../codec/avcodec/avutil.h"
46
47 //#define AVFORMAT_DEBUG 1
48
49 static const char *const ppsz_mux_options[] = {
50     "mux", NULL
51 };
52
53 /*****************************************************************************
54  * mux_sys_t: mux descriptor
55  *****************************************************************************/
56 struct sout_mux_sys_t
57 {
58     ByteIOContext   io;
59     int             io_buffer_size;
60     uint8_t        *io_buffer;
61
62     AVFormatContext *oc;
63     URLContext     url;
64     URLProtocol    prot;
65
66     bool     b_write_header;
67     bool     b_error;
68
69     int64_t        i_initial_dts;
70 };
71
72 /*****************************************************************************
73  * Local prototypes
74  *****************************************************************************/
75 static int Control  ( sout_mux_t *, int, va_list );
76 static int AddStream( sout_mux_t *, sout_input_t * );
77 static int DelStream( sout_mux_t *, sout_input_t * );
78 static int Mux      ( sout_mux_t * );
79
80 static int IOWrite( void *opaque, uint8_t *buf, int buf_size );
81 static int64_t IOSeek( void *opaque, int64_t offset, int whence );
82
83 /*****************************************************************************
84  * Open
85  *****************************************************************************/
86 int OpenMux( vlc_object_t *p_this )
87 {
88     AVOutputFormat *file_oformat;
89     sout_mux_t *p_mux = (sout_mux_t*)p_this;
90     sout_mux_sys_t *p_sys;
91     AVFormatParameters params, *ap = &params;
92     char *psz_mux;
93
94     /* Should we call it only once ? */
95     av_register_all();
96     av_log_set_callback( LibavutilCallback );
97
98     config_ChainParse( p_mux, "ffmpeg-", ppsz_mux_options, p_mux->p_cfg );
99
100     /* Find the requested muxer */
101     psz_mux = var_GetNonEmptyString( p_mux, "ffmpeg-mux" );
102     if( psz_mux )
103     {
104         file_oformat = guess_format( psz_mux, NULL, NULL );
105     }
106     else
107     {
108         file_oformat =
109             guess_format(NULL, p_mux->p_access->psz_path, NULL);
110     }
111     if (!file_oformat)
112     {
113       msg_Err( p_mux, "unable for find a suitable output format" );
114       return VLC_EGENERIC;
115     }
116
117     /* Fill p_mux fields */
118     p_mux->pf_control   = Control;
119     p_mux->pf_addstream = AddStream;
120     p_mux->pf_delstream = DelStream;
121     p_mux->pf_mux       = Mux;
122     p_mux->p_sys = p_sys = malloc( sizeof( sout_mux_sys_t ) );
123
124     p_sys->oc = av_alloc_format_context();
125     p_sys->oc->oformat = file_oformat;
126
127     /* Create I/O wrapper */
128     p_sys->io_buffer_size = 32768;  /* FIXME */
129     p_sys->io_buffer = malloc( p_sys->io_buffer_size );
130     p_sys->url.priv_data = p_mux;
131     p_sys->url.prot = &p_sys->prot;
132     p_sys->url.prot->name = "VLC I/O wrapper";
133     p_sys->url.prot->url_open = 0;
134     p_sys->url.prot->url_read = 0;
135     p_sys->url.prot->url_write =
136                     (int (*) (URLContext *, unsigned char *, int))IOWrite;
137     p_sys->url.prot->url_seek =
138                     (int64_t (*) (URLContext *, int64_t, int))IOSeek;
139     p_sys->url.prot->url_close = 0;
140     p_sys->url.prot->next = 0;
141     init_put_byte( &p_sys->io, p_sys->io_buffer, p_sys->io_buffer_size,
142                    1, &p_sys->url, NULL, IOWrite, IOSeek );
143
144     memset( ap, 0, sizeof(*ap) );
145     if( av_set_parameters( p_sys->oc, ap ) < 0 )
146     {
147         msg_Err( p_mux, "invalid encoding parameters" );
148         av_free( p_sys->oc );
149         free( p_sys->io_buffer );
150         free( p_sys );
151         return VLC_EGENERIC;
152     }
153
154 #if LIBAVFORMAT_VERSION_INT >= ((52<<16)+(0<<8)+0)
155     p_sys->oc->pb = &p_sys->io;
156 #else
157     p_sys->oc->pb = p_sys->io;
158 #endif
159     p_sys->oc->nb_streams = 0;
160
161     p_sys->b_write_header = true;
162     p_sys->b_error = false;
163     p_sys->i_initial_dts = 0;
164
165     return VLC_SUCCESS;
166 }
167
168 /*****************************************************************************
169  * Close
170  *****************************************************************************/
171 void CloseMux( vlc_object_t *p_this )
172 {
173     sout_mux_t *p_mux = (sout_mux_t*)p_this;
174     sout_mux_sys_t *p_sys = p_mux->p_sys;
175     unsigned int i;
176
177     if( !p_sys->b_write_header && av_write_trailer( p_sys->oc ) < 0 )
178     {
179         msg_Err( p_mux, "could not write trailer" );
180     }
181
182     for( i = 0 ; i < p_sys->oc->nb_streams; i++ )
183     {
184         if( p_sys->oc->streams[i]->codec->extradata )
185             av_free( p_sys->oc->streams[i]->codec->extradata );
186         av_free( p_sys->oc->streams[i]->codec );
187         av_free( p_sys->oc->streams[i] );
188     }
189     av_free( p_sys->oc );
190
191     free( p_sys->io_buffer );
192     free( p_sys );
193 }
194
195 /*****************************************************************************
196  * AddStream
197  *****************************************************************************/
198 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
199 {
200     sout_mux_sys_t *p_sys = p_mux->p_sys;
201     AVCodecContext *codec;
202     AVStream *stream;
203     int i_codec_id;
204
205     msg_Dbg( p_mux, "adding input" );
206
207     if( !GetFfmpegCodec( p_input->p_fmt->i_codec, 0, &i_codec_id, 0 ) )
208     {
209         msg_Dbg( p_mux, "couldn't find codec for fourcc '%4.4s'",
210                  (char *)&p_input->p_fmt->i_codec );
211         return VLC_EGENERIC;
212     }
213
214     p_input->p_sys = malloc( sizeof( int ) );
215     *((int *)p_input->p_sys) = p_sys->oc->nb_streams;
216
217     if( p_input->p_fmt->i_cat != VIDEO_ES && p_input->p_fmt->i_cat != AUDIO_ES)
218     {
219         msg_Warn( p_mux, "Unhandled ES category" );
220         return VLC_EGENERIC;
221     }
222
223     stream = av_new_stream( p_sys->oc, p_sys->oc->nb_streams);
224     if( !stream )
225     {
226         free( p_input->p_sys );
227         return VLC_EGENERIC;
228     }
229     codec = stream->codec;
230
231     /* This is used by LibavutilCallback (avutil.h) to print messages */
232     codec->opaque = (void*)p_mux;
233
234     switch( p_input->p_fmt->i_cat )
235     {
236     case AUDIO_ES:
237         codec->codec_type = CODEC_TYPE_AUDIO;
238         codec->channels = p_input->p_fmt->audio.i_channels;
239         codec->sample_rate = p_input->p_fmt->audio.i_rate;
240         codec->time_base = (AVRational){1, codec->sample_rate};
241         codec->frame_size = p_input->p_fmt->audio.i_frame_length;
242         break;
243
244     case VIDEO_ES:
245         if( !p_input->p_fmt->video.i_frame_rate ||
246             !p_input->p_fmt->video.i_frame_rate_base )
247         {
248             msg_Warn( p_mux, "Missing frame rate, assuming 25fps" );
249             p_input->p_fmt->video.i_frame_rate = 25;
250             p_input->p_fmt->video.i_frame_rate_base = 1;
251         }
252         codec->codec_type = CODEC_TYPE_VIDEO;
253         codec->width = p_input->p_fmt->video.i_width;
254         codec->height = p_input->p_fmt->video.i_height;
255         av_reduce( &codec->sample_aspect_ratio.num,
256                    &codec->sample_aspect_ratio.den,
257                    p_input->p_fmt->video.i_sar_num,
258                    p_input->p_fmt->video.i_sar_den, 1 << 30 /* something big */ );
259 #if LIBAVFORMAT_VERSION_INT >= ((52<<16)+(21<<8)+0)
260         stream->sample_aspect_ratio.num = codec->sample_aspect_ratio.num;
261         stream->sample_aspect_ratio.den = codec->sample_aspect_ratio.den;
262 #endif
263         codec->time_base.den = p_input->p_fmt->video.i_frame_rate;
264         codec->time_base.num = p_input->p_fmt->video.i_frame_rate_base;
265         break;
266
267     }
268
269     codec->bit_rate = p_input->p_fmt->i_bitrate;
270 #if LIBAVFORMAT_VERSION_INT >= ((51<<16)+(8<<8)+0)
271     codec->codec_tag = av_codec_get_tag( p_sys->oc->oformat->codec_tag, i_codec_id );
272     if( !codec->codec_tag && i_codec_id == CODEC_ID_MP2 )
273     {
274         i_codec_id = CODEC_ID_MP3;
275         codec->codec_tag = av_codec_get_tag( p_sys->oc->oformat->codec_tag, i_codec_id );
276     }
277 #else
278 #   warning "WARNING!!!!!!!"
279 #   warning "Using libavformat muxing with versions older than 51.8.0 (r7593) might produce broken files."
280     /* This is a hack */
281     if( i_codec_id == CODEC_ID_MP2 )
282         i_codec_id = CODEC_ID_MP3;
283     codec->codec_tag = p_input->p_fmt->i_original_fourcc ?: p_input->p_fmt->i_codec;
284 #endif
285     codec->codec_id = i_codec_id;
286
287     if( p_input->p_fmt->i_extra )
288     {
289         codec->extradata_size = p_input->p_fmt->i_extra;
290         codec->extradata = av_malloc( p_input->p_fmt->i_extra );
291         memcpy( codec->extradata, p_input->p_fmt->p_extra,
292                 p_input->p_fmt->i_extra );
293     }
294
295     return VLC_SUCCESS;
296 }
297
298 /*****************************************************************************
299  * DelStream
300  *****************************************************************************/
301 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
302 {
303     msg_Dbg( p_mux, "removing input" );
304     free( p_input->p_sys );
305     return VLC_SUCCESS;
306 }
307
308 static int MuxBlock( sout_mux_t *p_mux, sout_input_t *p_input )
309 {
310     sout_mux_sys_t *p_sys = p_mux->p_sys;
311     block_t *p_data = block_FifoGet( p_input->p_fifo );
312     int i_stream = *((int *)p_input->p_sys);
313     AVStream *p_stream = p_sys->oc->streams[i_stream];
314     AVPacket pkt;
315
316     memset( &pkt, 0, sizeof(AVPacket) );
317
318     av_init_packet(&pkt);
319     pkt.data = p_data->p_buffer;
320     pkt.size = p_data->i_buffer;
321     pkt.stream_index = i_stream;
322
323     if( p_data->i_flags & BLOCK_FLAG_TYPE_I ) pkt.flags |= PKT_FLAG_KEY;
324
325     /* avformat expects pts/dts which start from 0 */
326     p_data->i_dts -= p_mux->p_sys->i_initial_dts;
327     p_data->i_pts -= p_mux->p_sys->i_initial_dts;
328
329     if( p_data->i_pts > 0 )
330         pkt.pts = p_data->i_pts * p_stream->time_base.den /
331             INT64_C(1000000) / p_stream->time_base.num;
332     if( p_data->i_dts > 0 )
333         pkt.dts = p_data->i_dts * p_stream->time_base.den /
334             INT64_C(1000000) / p_stream->time_base.num;
335
336     /* this is another hack to prevent libavformat from triggering the "non monotone timestamps" check in avformat/utils.c */
337     p_stream->cur_dts = ( p_data->i_dts * p_stream->time_base.den /
338             INT64_C(1000000) / p_stream->time_base.num ) - 1;
339
340     if( av_write_frame( p_sys->oc, &pkt ) < 0 )
341     {
342         msg_Err( p_mux, "could not write frame (pts: %"PRId64", dts: %"PRId64") "
343                  "(pkt pts: %"PRId64", dts: %"PRId64")",
344                  p_data->i_pts, p_data->i_dts, pkt.pts, pkt.dts );
345         block_Release( p_data );
346         return VLC_EGENERIC;
347     }
348
349     block_Release( p_data );
350     return VLC_SUCCESS;
351 }
352
353 /*****************************************************************************
354  * Mux: multiplex available data in input fifos
355  *****************************************************************************/
356 static int Mux( sout_mux_t *p_mux )
357 {
358     sout_mux_sys_t *p_sys = p_mux->p_sys;
359
360     if( p_sys->b_error ) return VLC_EGENERIC;
361
362     if( p_sys->b_write_header )
363     {
364         msg_Dbg( p_mux, "writing header" );
365
366         if( av_write_header( p_sys->oc ) < 0 )
367         {
368             msg_Err( p_mux, "could not write header" );
369             p_sys->b_write_header = false;
370             p_sys->b_error = true;
371             return VLC_EGENERIC;
372         }
373
374 #if LIBAVFORMAT_VERSION_INT >= ((52<<16)+(0<<8)+0)
375         put_flush_packet( p_sys->oc->pb );
376 #else
377         put_flush_packet( &p_sys->oc->pb );
378 #endif
379         p_sys->b_write_header = false;
380     }
381
382     for( ;; )
383     {
384         mtime_t i_dts;
385
386         int i_stream = sout_MuxGetStream( p_mux, 1, &i_dts );
387         if( i_stream < 0 )
388             return VLC_SUCCESS;
389
390         if( !p_mux->p_sys->i_initial_dts )
391             p_mux->p_sys->i_initial_dts = i_dts;
392
393         MuxBlock( p_mux, p_mux->pp_inputs[i_stream] );
394     }
395
396     return VLC_SUCCESS;
397 }
398
399 /*****************************************************************************
400  * Control:
401  *****************************************************************************/
402 static int Control( sout_mux_t *p_mux, int i_query, va_list args )
403 {
404     bool *pb_bool;
405
406     switch( i_query )
407     {
408     case MUX_CAN_ADD_STREAM_WHILE_MUXING:
409         pb_bool = (bool*)va_arg( args, bool * );
410         *pb_bool = false;
411         return VLC_SUCCESS;
412
413     case MUX_GET_ADD_STREAM_WAIT:
414         pb_bool = (bool*)va_arg( args, bool * );
415         *pb_bool = true;
416         return VLC_SUCCESS;
417
418     case MUX_GET_MIME:
419     {
420         char **ppsz = (char**)va_arg( args, char ** );
421         *ppsz = strdup( p_mux->p_sys->oc->oformat->mime_type );
422         return VLC_SUCCESS;
423     }
424
425     default:
426         return VLC_EGENERIC;
427     }
428 }
429
430 /*****************************************************************************
431  * I/O wrappers for libavformat
432  *****************************************************************************/
433 static int IOWrite( void *opaque, uint8_t *buf, int buf_size )
434 {
435     URLContext *p_url = opaque;
436     sout_mux_t *p_mux = p_url->priv_data;
437     int i_ret;
438
439 #ifdef AVFORMAT_DEBUG
440     msg_Dbg( p_mux, "IOWrite %i bytes", buf_size );
441 #endif
442
443     block_t *p_buf = block_New( p_mux->p_sout, buf_size );
444     if( buf_size > 0 ) memcpy( p_buf->p_buffer, buf, buf_size );
445
446     if( p_mux->p_sys->b_write_header )
447         p_buf->i_flags |= BLOCK_FLAG_HEADER;
448
449     i_ret = sout_AccessOutWrite( p_mux->p_access, p_buf );
450     return i_ret ? i_ret : -1;
451 }
452
453 static int64_t IOSeek( void *opaque, int64_t offset, int whence )
454 {
455     URLContext *p_url = opaque;
456     sout_mux_t *p_mux = p_url->priv_data;
457
458 #ifdef AVFORMAT_DEBUG
459     msg_Dbg( p_mux, "IOSeek offset: %"PRId64", whence: %i", offset, whence );
460 #endif
461
462     switch( whence )
463     {
464     case SEEK_SET:
465         return sout_AccessOutSeek( p_mux->p_access, offset );
466     case SEEK_CUR:
467     case SEEK_END:
468     default:
469         return -1;
470     }
471 }