2 * This file is part of Libav.
4 * Libav is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * Libav 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 GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with Libav; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
33 #include "libavformat/avformat.h"
34 #include "libavformat/avio.h"
36 #include "libavcodec/avcodec.h"
38 #include "libavfilter/avfilter.h"
40 #include "libavutil/avutil.h"
41 #include "libavutil/dict.h"
42 #include "libavutil/fifo.h"
43 #include "libavutil/pixfmt.h"
44 #include "libavutil/rational.h"
47 #define VSYNC_PASSTHROUGH 0
59 typedef struct HWAccel {
61 int (*init)(AVCodecContext *s);
63 enum AVPixelFormat pix_fmt;
66 /* select an input stream for an output stream */
67 typedef struct StreamMap {
68 int disabled; /* 1 is this mapping is disabled by a negative map */
72 int sync_stream_index;
73 char *linklabel; /* name of an output link, for mapping lavfi outputs */
76 /* select an input file for an output file */
77 typedef struct MetadataMap {
78 int file; // file index
79 char type; // type of metadata to copy -- (g)lobal, (s)tream, (c)hapter or (p)rogram
80 int index; // stream/chapter/program number
83 typedef struct OptionsContext {
86 /* input/output options */
90 SpecifierOpt *codec_names;
92 SpecifierOpt *audio_channels;
93 int nb_audio_channels;
94 SpecifierOpt *audio_sample_rate;
95 int nb_audio_sample_rate;
96 SpecifierOpt *frame_rates;
98 SpecifierOpt *frame_sizes;
100 SpecifierOpt *frame_pix_fmts;
101 int nb_frame_pix_fmts;
104 int64_t input_ts_offset;
108 SpecifierOpt *ts_scale;
110 SpecifierOpt *dump_attachment;
111 int nb_dump_attachment;
112 SpecifierOpt *hwaccels;
114 SpecifierOpt *hwaccel_devices;
115 int nb_hwaccel_devices;
118 StreamMap *stream_maps;
120 /* first item specifies output metadata, second is input */
121 MetadataMap (*meta_data_maps)[2];
122 int nb_meta_data_maps;
123 int metadata_global_manual;
124 int metadata_streams_manual;
125 int metadata_chapters_manual;
126 const char **attachments;
129 int chapters_input_file;
131 int64_t recording_time;
132 uint64_t limit_filesize;
139 int subtitle_disable;
142 /* indexed by output file stream index */
146 SpecifierOpt *metadata;
148 SpecifierOpt *max_frames;
150 SpecifierOpt *bitstream_filters;
151 int nb_bitstream_filters;
152 SpecifierOpt *codec_tags;
154 SpecifierOpt *sample_fmts;
156 SpecifierOpt *qscale;
158 SpecifierOpt *forced_key_frames;
159 int nb_forced_key_frames;
160 SpecifierOpt *force_fps;
162 SpecifierOpt *frame_aspect_ratios;
163 int nb_frame_aspect_ratios;
164 SpecifierOpt *rc_overrides;
166 SpecifierOpt *intra_matrices;
167 int nb_intra_matrices;
168 SpecifierOpt *inter_matrices;
169 int nb_inter_matrices;
170 SpecifierOpt *top_field_first;
171 int nb_top_field_first;
172 SpecifierOpt *metadata_map;
174 SpecifierOpt *presets;
176 SpecifierOpt *copy_initial_nonkeyframes;
177 int nb_copy_initial_nonkeyframes;
178 SpecifierOpt *filters;
180 SpecifierOpt *filter_scripts;
181 int nb_filter_scripts;
184 SpecifierOpt *passlogfiles;
188 typedef struct InputFilter {
189 AVFilterContext *filter;
190 struct InputStream *ist;
191 struct FilterGraph *graph;
195 typedef struct OutputFilter {
196 AVFilterContext *filter;
197 struct OutputStream *ost;
198 struct FilterGraph *graph;
201 /* temporary storage until stream maps are processed */
202 AVFilterInOut *out_tmp;
205 typedef struct FilterGraph {
207 const char *graph_desc;
209 AVFilterGraph *graph;
211 InputFilter **inputs;
213 OutputFilter **outputs;
217 typedef struct InputStream {
220 int discard; /* true if stream data should be discarded */
221 int decoding_needed; /* true if the packets must be decoded in 'raw_fifo' */
222 AVCodecContext *dec_ctx;
224 AVFrame *decoded_frame;
225 AVFrame *filter_frame; /* a ref of decoded_frame, to be sent to filters */
227 int64_t start; /* time when read started */
228 /* predicted dts of the next packet read for this stream or (when there are
229 * several frames in a packet) of the next frame in current packet */
231 /* dts of the last packet read for this stream */
233 PtsCorrectionContext pts_ctx;
235 int showed_multi_packet_warning;
236 AVDictionary *decoder_opts;
237 AVRational framerate; /* framerate forced with -r */
241 int resample_pix_fmt;
243 int resample_sample_fmt;
244 int resample_sample_rate;
245 int resample_channels;
246 uint64_t resample_channel_layout;
248 /* decoded data from this stream goes into all those filters
249 * currently video and audio only */
250 InputFilter **filters;
253 /* hwaccel options */
254 enum HWAccelID hwaccel_id;
255 char *hwaccel_device;
257 /* hwaccel context */
258 enum HWAccelID active_hwaccel_id;
260 void (*hwaccel_uninit)(AVCodecContext *s);
261 int (*hwaccel_get_buffer)(AVCodecContext *s, AVFrame *frame, int flags);
262 int (*hwaccel_retrieve_data)(AVCodecContext *s, AVFrame *frame);
263 enum AVPixelFormat hwaccel_pix_fmt;
264 enum AVPixelFormat hwaccel_retrieved_pix_fmt;
267 // combined size of all the packets read
269 /* number of packets successfully read for this stream */
271 // number of frames/samples retrieved from the decoder
272 uint64_t frames_decoded;
273 uint64_t samples_decoded;
276 typedef struct InputFile {
277 AVFormatContext *ctx;
278 int eof_reached; /* true if eof reached */
279 int eagain; /* true if last read attempt returned EAGAIN */
280 int ist_index; /* index of first stream in ist_table */
282 int64_t start_time; /* user-specified start time in AV_TIME_BASE or AV_NOPTS_VALUE */
283 int64_t recording_time;
284 int nb_streams; /* number of stream that avconv is aware of; may be different
285 from ctx.nb_streams if new streams appear during av_read_frame() */
290 pthread_t thread; /* thread reading from this file */
291 int finished; /* the thread has exited */
292 int joined; /* the thread has been joined */
293 pthread_mutex_t fifo_lock; /* lock for access to fifo */
294 pthread_cond_t fifo_cond; /* the main thread will signal on this cond after reading from fifo */
295 AVFifoBuffer *fifo; /* demuxed packets are stored here; freed by the main thread */
299 typedef struct OutputStream {
300 int file_index; /* file index */
301 int index; /* stream index in the output file */
302 int source_index; /* InputStream index */
303 AVStream *st; /* stream in the output file */
304 int encoding_needed; /* true if encoding needed for this stream */
306 /* input pts and corresponding output pts
308 // double sync_ipts; /* dts from the AVPacket of the demuxer in second units */
309 struct InputStream *sync_ist; /* input stream to sync against */
310 int64_t sync_opts; /* output frame counter, could be changed to some true timestamp */ // FIXME look at frame_number
311 /* pts of the first frame encoded for this stream, used for limiting
314 /* dts of the last packet sent to the muxer */
315 int64_t last_mux_dts;
316 AVBitStreamFilterContext *bitstream_filters;
317 AVCodecContext *enc_ctx;
320 AVFrame *filtered_frame;
323 AVRational frame_rate;
327 float frame_aspect_ratio;
329 /* forced key frames */
330 int64_t *forced_kf_pts;
333 char *forced_keyframes;
335 char *logfile_prefix;
338 OutputFilter *filter;
342 AVDictionary *encoder_opts;
343 AVDictionary *resample_opts;
344 int finished; /* no more packets should be written for this stream */
346 const char *attachment_filename;
347 int copy_initial_nonkeyframes;
349 enum AVPixelFormat pix_fmts[2];
351 AVCodecParserContext *parser;
354 // combined size of all the packets written
356 // number of packets send to the muxer
357 uint64_t packets_written;
358 // number of frames/samples sent to the encoder
359 uint64_t frames_encoded;
360 uint64_t samples_encoded;
363 typedef struct OutputFile {
364 AVFormatContext *ctx;
366 int ost_index; /* index of the first stream in output_streams */
367 int64_t recording_time; /* desired length of the resulting file in microseconds */
368 int64_t start_time; /* start time in microseconds */
369 uint64_t limit_filesize;
374 extern InputStream **input_streams;
375 extern int nb_input_streams;
376 extern InputFile **input_files;
377 extern int nb_input_files;
379 extern OutputStream **output_streams;
380 extern int nb_output_streams;
381 extern OutputFile **output_files;
382 extern int nb_output_files;
384 extern FilterGraph **filtergraphs;
385 extern int nb_filtergraphs;
387 extern char *vstats_filename;
389 extern float audio_drift_threshold;
390 extern float dts_delta_threshold;
392 extern int audio_volume;
393 extern int audio_sync_method;
394 extern int video_sync_method;
395 extern int do_benchmark;
396 extern int do_deinterlace;
397 extern int do_hex_dump;
398 extern int do_pkt_dump;
401 extern int exit_on_error;
402 extern int print_stats;
405 extern const AVIOInterruptCB int_cb;
407 extern const OptionDef options[];
409 extern const HWAccel hwaccels[];
411 void reset_options(OptionsContext *o);
412 void show_usage(void);
414 void opt_output_file(void *optctx, const char *filename);
416 void assert_avoptions(AVDictionary *m);
418 int guess_input_channel_layout(InputStream *ist);
420 int configure_filtergraph(FilterGraph *fg);
421 int configure_output_filter(FilterGraph *fg, OutputFilter *ofilter, AVFilterInOut *out);
422 int ist_in_filtergraph(FilterGraph *fg, InputStream *ist);
423 FilterGraph *init_simple_filtergraph(InputStream *ist, OutputStream *ost);
425 int avconv_parse_options(int argc, char **argv);
427 int vdpau_init(AVCodecContext *s);
428 int dxva2_init(AVCodecContext *s);
429 int vda_init(AVCodecContext *s);
431 #endif /* AVCONV_H */