]> git.sesse.net Git - vlc/blob - modules/demux/avformat/mux.c
avformat (mux/demux): implement private options
[vlc] / modules / demux / avformat / mux.c
1 /*****************************************************************************
2  * mux.c: muxer using 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 #include <libavformat/avformat.h>
37
38 #include "avformat.h"
39 #include "../../codec/avcodec/avcodec.h"
40 #include "../../codec/avcodec/avcommon.h"
41
42 /* Support for deprecated APIs */
43 #if LIBAVFORMAT_VERSION_INT < ((52<<16)+(105<<8)+0)
44 # define avio_flush put_flush_packet
45 #endif
46
47 //#define AVFORMAT_DEBUG 1
48
49 static const char *const ppsz_mux_options[] = {
50     "mux", "options", NULL
51 };
52
53 /*****************************************************************************
54  * mux_sys_t: mux descriptor
55  *****************************************************************************/
56 struct sout_mux_sys_t
57 {
58 #if LIBAVFORMAT_VERSION_INT >= ((52<<16)+(105<<8)+0)
59     AVIOContext     *io;
60 #else
61     ByteIOContext   io;
62 #endif
63     int             io_buffer_size;
64     uint8_t        *io_buffer;
65
66     AVFormatContext *oc;
67
68     bool     b_write_header;
69     bool     b_error;
70
71     int64_t        i_initial_dts;
72 };
73
74 /*****************************************************************************
75  * Local prototypes
76  *****************************************************************************/
77 static int Control  ( sout_mux_t *, int, va_list );
78 static int AddStream( sout_mux_t *, sout_input_t * );
79 static int DelStream( sout_mux_t *, sout_input_t * );
80 static int Mux      ( sout_mux_t * );
81
82 static int IOWrite( void *opaque, uint8_t *buf, int buf_size );
83 static int64_t IOSeek( void *opaque, int64_t offset, int whence );
84
85 /*****************************************************************************
86  * Open
87  *****************************************************************************/
88 int OpenMux( vlc_object_t *p_this )
89 {
90     AVOutputFormat *file_oformat;
91     sout_mux_t *p_mux = (sout_mux_t*)p_this;
92     sout_mux_sys_t *p_sys;
93     char *psz_mux;
94
95     vlc_init_avformat();
96
97     config_ChainParse( p_mux, "sout-avformat-", ppsz_mux_options, p_mux->p_cfg );
98
99     /* Find the requested muxer */
100     psz_mux = var_GetNonEmptyString( p_mux, "sout-avformat-mux" );
101     if( psz_mux )
102     {
103 #if( LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT( 52, 45, 0 ) )
104         file_oformat = av_guess_format( psz_mux, NULL, NULL );
105 #else
106         file_oformat = guess_format( psz_mux, NULL, NULL );
107 #endif
108         free( psz_mux );
109     }
110     else
111     {
112         file_oformat =
113 #if( LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT( 52, 45, 0 ) )
114             av_guess_format( NULL, p_mux->p_access->psz_path, NULL);
115 #else
116             guess_format( NULL, p_mux->p_access->psz_path, NULL);
117 #endif
118     }
119     if (!file_oformat)
120     {
121       msg_Err( p_mux, "unable for find a suitable output format" );
122       return VLC_EGENERIC;
123     }
124
125     /* Fill p_mux fields */
126     p_mux->pf_control   = Control;
127     p_mux->pf_addstream = AddStream;
128     p_mux->pf_delstream = DelStream;
129     p_mux->pf_mux       = Mux;
130     p_mux->p_sys = p_sys = malloc( sizeof( sout_mux_sys_t ) );
131
132     p_sys->oc = avformat_alloc_context();
133     p_sys->oc->oformat = file_oformat;
134
135     /* Create I/O wrapper */
136     p_sys->io_buffer_size = 32768;  /* FIXME */
137     p_sys->io_buffer = malloc( p_sys->io_buffer_size );
138
139 #if (LIBAVFORMAT_VERSION_INT >= ((52<<16)+(105<<8)+0))
140     p_sys->io = avio_alloc_context(
141 #else
142     init_put_byte( &p_sys->io,
143 #endif
144         p_sys->io_buffer, p_sys->io_buffer_size,
145         1, p_mux, NULL, IOWrite, IOSeek );
146
147
148 #if (LIBAVFORMAT_VERSION_INT < ((52<<16)+(105<<8)+0))
149     AVFormatParameters params, *ap = &params;
150     memset( ap, 0, sizeof(*ap) );
151     if( av_set_parameters( p_sys->oc, ap ) < 0 )
152     {
153         msg_Err( p_mux, "invalid encoding parameters" );
154         av_free( p_sys->oc );
155         free( p_sys->io_buffer );
156         free( p_sys );
157         return VLC_EGENERIC;
158     }
159 #endif
160
161 #if (LIBAVFORMAT_VERSION_INT >= ((52<<16)+(105<<8)+0))
162     p_sys->oc->pb = p_sys->io;
163 #else
164     p_sys->oc->pb = &p_sys->io;
165 #endif
166     p_sys->oc->nb_streams = 0;
167
168     p_sys->b_write_header = true;
169     p_sys->b_error = false;
170     p_sys->i_initial_dts = 0;
171
172     return VLC_SUCCESS;
173 }
174
175 /*****************************************************************************
176  * Close
177  *****************************************************************************/
178 void CloseMux( vlc_object_t *p_this )
179 {
180     sout_mux_t *p_mux = (sout_mux_t*)p_this;
181     sout_mux_sys_t *p_sys = p_mux->p_sys;
182
183     if( !p_sys->b_write_header && !p_sys->b_error && av_write_trailer( p_sys->oc ) < 0 )
184     {
185         msg_Err( p_mux, "could not write trailer" );
186     }
187
188 #if( LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT( 52, 96, 0 ) )
189     avformat_free_context(p_sys->oc);
190 #else
191     for( unsigned i = 0 ; i < p_sys->oc->nb_streams; i++ )
192     {
193         av_free( p_sys->oc->streams[i]->codec->extradata );
194         av_free( p_sys->oc->streams[i]->codec );
195 #if( LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT( 52, 81, 0 ) )
196         av_free( p_sys->oc->streams[i]->info );
197 #endif
198         av_free( p_sys->oc->streams[i] );
199     }
200     av_free( p_sys->oc->streams );
201     av_free( p_sys->oc );
202 #endif
203
204     free( p_sys->io_buffer );
205     free( p_sys );
206 }
207
208 /*****************************************************************************
209  * AddStream
210  *****************************************************************************/
211 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
212 {
213     sout_mux_sys_t *p_sys = p_mux->p_sys;
214     AVCodecContext *codec;
215     AVStream *stream;
216     int i_codec_id;
217
218     msg_Dbg( p_mux, "adding input" );
219
220     if( !GetFfmpegCodec( p_input->p_fmt->i_codec, 0, &i_codec_id, 0 ) )
221     {
222         msg_Dbg( p_mux, "couldn't find codec for fourcc '%4.4s'",
223                  (char *)&p_input->p_fmt->i_codec );
224         return VLC_EGENERIC;
225     }
226
227     p_input->p_sys = malloc( sizeof( int ) );
228     *((int *)p_input->p_sys) = p_sys->oc->nb_streams;
229
230     if( p_input->p_fmt->i_cat != VIDEO_ES && p_input->p_fmt->i_cat != AUDIO_ES)
231     {
232         msg_Warn( p_mux, "Unhandled ES category" );
233         return VLC_EGENERIC;
234     }
235
236 #if (LIBAVFORMAT_VERSION_INT >= ((53<<16)+(10<<8)+0))
237     stream = avformat_new_stream( p_sys->oc, NULL);
238 #else
239     stream = av_new_stream( p_sys->oc, p_sys->oc->nb_streams);
240 #endif
241     if( !stream )
242     {
243         free( p_input->p_sys );
244         return VLC_EGENERIC;
245     }
246     codec = stream->codec;
247
248     codec->opaque = p_mux;
249
250     switch( p_input->p_fmt->i_cat )
251     {
252     case AUDIO_ES:
253         codec->codec_type = AVMEDIA_TYPE_AUDIO;
254         codec->channels = p_input->p_fmt->audio.i_channels;
255         codec->sample_rate = p_input->p_fmt->audio.i_rate;
256         codec->time_base = (AVRational){1, codec->sample_rate};
257         codec->frame_size = p_input->p_fmt->audio.i_frame_length;
258         break;
259
260     case VIDEO_ES:
261         if( !p_input->p_fmt->video.i_frame_rate ||
262             !p_input->p_fmt->video.i_frame_rate_base )
263         {
264             msg_Warn( p_mux, "Missing frame rate, assuming 25fps" );
265             p_input->p_fmt->video.i_frame_rate = 25;
266             p_input->p_fmt->video.i_frame_rate_base = 1;
267         }
268         codec->codec_type = AVMEDIA_TYPE_VIDEO;
269         codec->width = p_input->p_fmt->video.i_width;
270         codec->height = p_input->p_fmt->video.i_height;
271         av_reduce( &codec->sample_aspect_ratio.num,
272                    &codec->sample_aspect_ratio.den,
273                    p_input->p_fmt->video.i_sar_num,
274                    p_input->p_fmt->video.i_sar_den, 1 << 30 /* something big */ );
275 #if LIBAVFORMAT_VERSION_INT >= ((52<<16)+(21<<8)+0)
276         stream->sample_aspect_ratio.num = codec->sample_aspect_ratio.num;
277         stream->sample_aspect_ratio.den = codec->sample_aspect_ratio.den;
278 #endif
279         codec->time_base.den = p_input->p_fmt->video.i_frame_rate;
280         codec->time_base.num = p_input->p_fmt->video.i_frame_rate_base;
281         break;
282
283     }
284
285     codec->bit_rate = p_input->p_fmt->i_bitrate;
286 #if LIBAVFORMAT_VERSION_INT >= ((51<<16)+(8<<8)+0)
287     codec->codec_tag = av_codec_get_tag( p_sys->oc->oformat->codec_tag, i_codec_id );
288     if( !codec->codec_tag && i_codec_id == CODEC_ID_MP2 )
289     {
290         i_codec_id = CODEC_ID_MP3;
291         codec->codec_tag = av_codec_get_tag( p_sys->oc->oformat->codec_tag, i_codec_id );
292     }
293 #else
294 #   warning "WARNING!!!!!!!"
295 #   warning "Using libavformat muxing with versions older than 51.8.0 (r7593) might produce broken files."
296     /* This is a hack */
297     if( i_codec_id == CODEC_ID_MP2 )
298         i_codec_id = CODEC_ID_MP3;
299     codec->codec_tag = p_input->p_fmt->i_original_fourcc ?: p_input->p_fmt->i_codec;
300 #endif
301     codec->codec_id = i_codec_id;
302
303     if( p_input->p_fmt->i_extra )
304     {
305         codec->extradata_size = p_input->p_fmt->i_extra;
306         codec->extradata = av_malloc( p_input->p_fmt->i_extra );
307         memcpy( codec->extradata, p_input->p_fmt->p_extra,
308                 p_input->p_fmt->i_extra );
309     }
310
311     return VLC_SUCCESS;
312 }
313
314 /*****************************************************************************
315  * DelStream
316  *****************************************************************************/
317 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
318 {
319     msg_Dbg( p_mux, "removing input" );
320     free( p_input->p_sys );
321     return VLC_SUCCESS;
322 }
323
324 static int MuxBlock( sout_mux_t *p_mux, sout_input_t *p_input )
325 {
326     sout_mux_sys_t *p_sys = p_mux->p_sys;
327     block_t *p_data = block_FifoGet( p_input->p_fifo );
328     int i_stream = *((int *)p_input->p_sys);
329     AVStream *p_stream = p_sys->oc->streams[i_stream];
330     AVPacket pkt;
331
332     memset( &pkt, 0, sizeof(AVPacket) );
333
334     av_init_packet(&pkt);
335     pkt.data = p_data->p_buffer;
336     pkt.size = p_data->i_buffer;
337     pkt.stream_index = i_stream;
338
339     if( p_data->i_flags & BLOCK_FLAG_TYPE_I ) pkt.flags |= AV_PKT_FLAG_KEY;
340
341     /* avformat expects pts/dts which start from 0 */
342     p_data->i_dts -= p_mux->p_sys->i_initial_dts;
343     p_data->i_pts -= p_mux->p_sys->i_initial_dts;
344
345     if( p_data->i_pts > 0 )
346         pkt.pts = p_data->i_pts * p_stream->time_base.den /
347             INT64_C(1000000) / p_stream->time_base.num;
348     if( p_data->i_dts > 0 )
349         pkt.dts = p_data->i_dts * p_stream->time_base.den /
350             INT64_C(1000000) / p_stream->time_base.num;
351
352     /* this is another hack to prevent libavformat from triggering the "non monotone timestamps" check in avformat/utils.c */
353     p_stream->cur_dts = ( p_data->i_dts * p_stream->time_base.den /
354             INT64_C(1000000) / p_stream->time_base.num ) - 1;
355
356     if( av_write_frame( p_sys->oc, &pkt ) < 0 )
357     {
358         msg_Err( p_mux, "could not write frame (pts: %"PRId64", dts: %"PRId64") "
359                  "(pkt pts: %"PRId64", dts: %"PRId64")",
360                  p_data->i_pts, p_data->i_dts, pkt.pts, pkt.dts );
361         block_Release( p_data );
362         return VLC_EGENERIC;
363     }
364
365     block_Release( p_data );
366     return VLC_SUCCESS;
367 }
368
369 /*****************************************************************************
370  * Mux: multiplex available data in input fifos
371  *****************************************************************************/
372 static int Mux( sout_mux_t *p_mux )
373 {
374     sout_mux_sys_t *p_sys = p_mux->p_sys;
375
376     if( p_sys->b_error ) return VLC_EGENERIC;
377
378     if( p_sys->b_write_header )
379     {
380         int error;
381         msg_Dbg( p_mux, "writing header" );
382
383 #if (LIBAVFORMAT_VERSION_INT >= ((53<<16)+(2<<8)+0))
384         char *psz_opts = var_GetNonEmptyString( p_mux, "sout-avformat-options" );
385         AVDictionary *options = NULL;
386         if (psz_opts && *psz_opts)
387             options = vlc_av_get_options(psz_opts);
388         free(psz_opts);
389         error = avformat_write_header( p_sys->oc, options ? &options : NULL);
390         AVDictionaryEntry *t = NULL;
391         while ((t = av_dict_get(options, "", t, AV_DICT_IGNORE_SUFFIX))) {
392             msg_Err( p_mux, "Unknown option \"%s\"", t->key );
393         }
394         av_dict_free(&options);
395 #else
396         error = av_write_header( p_sys->oc );
397 #endif
398         if( error < 0 )
399         {
400             errno = AVUNERROR(error);
401             msg_Err( p_mux, "could not write header: %m" );
402             p_sys->b_write_header = false;
403             p_sys->b_error = true;
404             return VLC_EGENERIC;
405         }
406
407 #if LIBAVFORMAT_VERSION_INT >= ((52<<16)+(0<<8)+0)
408         avio_flush( p_sys->oc->pb );
409 #else
410         avio_flush( &p_sys->oc->pb );
411 #endif
412         p_sys->b_write_header = false;
413     }
414
415     for( ;; )
416     {
417         mtime_t i_dts;
418
419         int i_stream = sout_MuxGetStream( p_mux, 1, &i_dts );
420         if( i_stream < 0 )
421             return VLC_SUCCESS;
422
423         if( !p_mux->p_sys->i_initial_dts )
424             p_mux->p_sys->i_initial_dts = i_dts;
425
426         MuxBlock( p_mux, p_mux->pp_inputs[i_stream] );
427     }
428
429     return VLC_SUCCESS;
430 }
431
432 /*****************************************************************************
433  * Control:
434  *****************************************************************************/
435 static int Control( sout_mux_t *p_mux, int i_query, va_list args )
436 {
437     bool *pb_bool;
438
439     switch( i_query )
440     {
441     case MUX_CAN_ADD_STREAM_WHILE_MUXING:
442         pb_bool = (bool*)va_arg( args, bool * );
443         *pb_bool = false;
444         return VLC_SUCCESS;
445
446     case MUX_GET_ADD_STREAM_WAIT:
447         pb_bool = (bool*)va_arg( args, bool * );
448         *pb_bool = true;
449         return VLC_SUCCESS;
450
451     case MUX_GET_MIME:
452     {
453         char **ppsz = (char**)va_arg( args, char ** );
454         *ppsz = strdup( p_mux->p_sys->oc->oformat->mime_type );
455         return VLC_SUCCESS;
456     }
457
458     default:
459         return VLC_EGENERIC;
460     }
461 }
462
463 /*****************************************************************************
464  * I/O wrappers for libavformat
465  *****************************************************************************/
466 static int IOWrite( void *opaque, uint8_t *buf, int buf_size )
467 {
468     sout_mux_t *p_mux = opaque;
469     int i_ret;
470
471 #ifdef AVFORMAT_DEBUG
472     msg_Dbg( p_mux, "IOWrite %i bytes", buf_size );
473 #endif
474
475     block_t *p_buf = block_New( p_mux->p_sout, buf_size );
476     if( buf_size > 0 ) memcpy( p_buf->p_buffer, buf, buf_size );
477
478     if( p_mux->p_sys->b_write_header )
479         p_buf->i_flags |= BLOCK_FLAG_HEADER;
480
481     i_ret = sout_AccessOutWrite( p_mux->p_access, p_buf );
482     return i_ret ? i_ret : -1;
483 }
484
485 static int64_t IOSeek( void *opaque, int64_t offset, int whence )
486 {
487     sout_mux_t *p_mux = opaque;
488
489 #ifdef AVFORMAT_DEBUG
490     msg_Dbg( p_mux, "IOSeek offset: %"PRId64", whence: %i", offset, whence );
491 #endif
492
493     switch( whence )
494     {
495     case SEEK_SET:
496         return sout_AccessOutSeek( p_mux->p_access, offset );
497     case SEEK_CUR:
498     case SEEK_END:
499     default:
500         return -1;
501     }
502 }