2 * This file is part of FFmpeg.
4 * FFmpeg 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 * FFmpeg 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 FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
34 #include "libavformat/avformat.h"
35 #include "libavformat/avio.h"
37 #include "libavcodec/avcodec.h"
39 #include "libavfilter/avfilter.h"
40 #include "libavfilter/avfiltergraph.h"
42 #include "libavutil/avutil.h"
43 #include "libavutil/dict.h"
44 #include "libavutil/fifo.h"
45 #include "libavutil/pixfmt.h"
46 #include "libavutil/rational.h"
48 #include "libswresample/swresample.h"
51 #define VSYNC_PASSTHROUGH 0
54 #define VSYNC_DROP 0xff
56 #define MAX_STREAMS 1024 /* arbitrary sanity check value */
58 /* select an input stream for an output stream */
59 typedef struct StreamMap {
60 int disabled; /* 1 is this mapping is disabled by a negative map */
64 int sync_stream_index;
65 char *linklabel; /* name of an output link, for mapping lavfi outputs */
69 int file_idx, stream_idx, channel_idx; // input
70 int ofile_idx, ostream_idx; // output
73 typedef struct OptionsContext {
76 /* input/output options */
80 SpecifierOpt *codec_names;
82 SpecifierOpt *audio_channels;
83 int nb_audio_channels;
84 SpecifierOpt *audio_sample_rate;
85 int nb_audio_sample_rate;
86 SpecifierOpt *frame_rates;
88 SpecifierOpt *frame_sizes;
90 SpecifierOpt *frame_pix_fmts;
91 int nb_frame_pix_fmts;
94 int64_t input_ts_offset;
97 SpecifierOpt *ts_scale;
99 SpecifierOpt *dump_attachment;
100 int nb_dump_attachment;
103 StreamMap *stream_maps;
105 AudioChannelMap *audio_channel_maps; /* one info entry per -map_channel */
106 int nb_audio_channel_maps; /* number of (valid) -map_channel settings */
107 int metadata_global_manual;
108 int metadata_streams_manual;
109 int metadata_chapters_manual;
110 const char **attachments;
113 int chapters_input_file;
115 int64_t recording_time;
116 uint64_t limit_filesize;
123 int subtitle_disable;
126 /* indexed by output file stream index */
130 SpecifierOpt *metadata;
132 SpecifierOpt *max_frames;
134 SpecifierOpt *bitstream_filters;
135 int nb_bitstream_filters;
136 SpecifierOpt *codec_tags;
138 SpecifierOpt *sample_fmts;
140 SpecifierOpt *qscale;
142 SpecifierOpt *forced_key_frames;
143 int nb_forced_key_frames;
144 SpecifierOpt *force_fps;
146 SpecifierOpt *frame_aspect_ratios;
147 int nb_frame_aspect_ratios;
148 SpecifierOpt *rc_overrides;
150 SpecifierOpt *intra_matrices;
151 int nb_intra_matrices;
152 SpecifierOpt *inter_matrices;
153 int nb_inter_matrices;
154 SpecifierOpt *top_field_first;
155 int nb_top_field_first;
156 SpecifierOpt *metadata_map;
158 SpecifierOpt *presets;
160 SpecifierOpt *copy_initial_nonkeyframes;
161 int nb_copy_initial_nonkeyframes;
162 SpecifierOpt *copy_prior_start;
163 int nb_copy_prior_start;
164 SpecifierOpt *filters;
166 SpecifierOpt *reinit_filters;
167 int nb_reinit_filters;
168 SpecifierOpt *fix_sub_duration;
169 int nb_fix_sub_duration;
172 SpecifierOpt *passlogfiles;
176 typedef struct InputFilter {
177 AVFilterContext *filter;
178 struct InputStream *ist;
179 struct FilterGraph *graph;
183 typedef struct OutputFilter {
184 AVFilterContext *filter;
185 struct OutputStream *ost;
186 struct FilterGraph *graph;
189 /* temporary storage until stream maps are processed */
190 AVFilterInOut *out_tmp;
193 typedef struct FilterGraph {
195 const char *graph_desc;
197 AVFilterGraph *graph;
199 InputFilter **inputs;
201 OutputFilter **outputs;
205 typedef struct InputStream {
208 int discard; /* true if stream data should be discarded */
209 int decoding_needed; /* true if the packets must be decoded in 'raw_fifo' */
211 AVFrame *decoded_frame;
213 int64_t start; /* time when read started */
214 /* predicted dts of the next packet read for this stream or (when there are
215 * several frames in a packet) of the next frame in current packet (in AV_TIME_BASE units) */
217 int64_t dts; ///< dts of the last packet read for this stream (in AV_TIME_BASE units)
219 int64_t next_pts; ///< synthetic pts for the next decode frame (in AV_TIME_BASE units)
220 int64_t pts; ///< current pts of the decoded frame (in AV_TIME_BASE units)
221 int wrap_correction_done;
223 int64_t filter_in_rescale_delta_last;
226 int is_start; /* is 1 at the start and after a discontinuity */
228 int showed_multi_packet_warning;
230 AVRational framerate; /* framerate forced with -r */
235 int resample_pix_fmt;
237 int resample_sample_fmt;
238 int resample_sample_rate;
239 int resample_channels;
240 uint64_t resample_channel_layout;
242 int fix_sub_duration;
243 struct { /* previous decoded subtitle and related variables */
252 AVFilterBufferRef *ref;
256 /* a pool of free buffers for decoded data */
257 FrameBuffer *buffer_pool;
260 /* decoded data from this stream goes into all those filters
261 * currently video and audio only */
262 InputFilter **filters;
268 typedef struct InputFile {
269 AVFormatContext *ctx;
270 int eof_reached; /* true if eof reached */
271 int eagain; /* true if last read attempt returned EAGAIN */
272 int ist_index; /* index of first stream in input_streams */
274 int nb_streams; /* number of stream that ffmpeg is aware of; may be different
275 from ctx.nb_streams if new streams appear during av_read_frame() */
276 int nb_streams_warn; /* number of streams that the user was warned of */
280 pthread_t thread; /* thread reading from this file */
281 int finished; /* the thread has exited */
282 int joined; /* the thread has been joined */
283 pthread_mutex_t fifo_lock; /* lock for access to fifo */
284 pthread_cond_t fifo_cond; /* the main thread will signal on this cond after reading from fifo */
285 AVFifoBuffer *fifo; /* demuxed packets are stored here; freed by the main thread */
289 typedef struct OutputStream {
290 int file_index; /* file index */
291 int index; /* stream index in the output file */
292 int source_index; /* InputStream index */
293 AVStream *st; /* stream in the output file */
294 int encoding_needed; /* true if encoding needed for this stream */
296 /* input pts and corresponding output pts
298 struct InputStream *sync_ist; /* input stream to sync against */
299 int64_t sync_opts; /* output frame counter, could be changed to some true timestamp */ // FIXME look at frame_number
300 /* pts of the first frame encoded for this stream, used for limiting
303 AVBitStreamFilterContext *bitstream_filters;
306 AVFrame *filtered_frame;
309 AVRational frame_rate;
313 float frame_aspect_ratio;
315 /* forced key frames */
316 int64_t *forced_kf_pts;
319 char *forced_keyframes;
322 int audio_channels_map[SWR_CH_MAX]; /* list of the channels id to pick from the source stream */
323 int audio_channels_mapped; /* number of channels in audio_channels_map */
325 char *logfile_prefix;
328 OutputFilter *filter;
332 int64_t swr_filter_type;
333 int64_t swr_dither_method;
334 double swr_dither_scale;
336 int finished; /* no more packets should be written for this stream */
337 int unavailable; /* true if the steram is unavailable (possibly temporarily) */
339 const char *attachment_filename;
340 int copy_initial_nonkeyframes;
341 int copy_prior_start;
346 typedef struct OutputFile {
347 AVFormatContext *ctx;
349 int ost_index; /* index of the first stream in output_streams */
350 int64_t recording_time; ///< desired length of the resulting file in microseconds == AV_TIME_BASE units
351 int64_t start_time; ///< start time in microseconds == AV_TIME_BASE units
352 uint64_t limit_filesize; /* filesize limit expressed in bytes */
357 extern InputStream **input_streams;
358 extern int nb_input_streams;
359 extern InputFile **input_files;
360 extern int nb_input_files;
362 extern OutputStream **output_streams;
363 extern int nb_output_streams;
364 extern OutputFile **output_files;
365 extern int nb_output_files;
367 extern FilterGraph **filtergraphs;
368 extern int nb_filtergraphs;
370 extern char *vstats_filename;
372 extern float audio_drift_threshold;
373 extern float dts_delta_threshold;
374 extern float dts_error_threshold;
376 extern int audio_volume;
377 extern int audio_sync_method;
378 extern int video_sync_method;
379 extern int do_benchmark;
380 extern int do_benchmark_all;
381 extern int do_deinterlace;
382 extern int do_hex_dump;
383 extern int do_pkt_dump;
387 extern int exit_on_error;
388 extern int print_stats;
390 extern int stdin_interaction;
391 extern int frame_bits_per_raw_sample;
392 extern AVIOContext *progress_avio;
394 extern const AVIOInterruptCB int_cb;
396 extern const OptionDef options[];
398 void term_init(void);
399 void term_exit(void);
401 void reset_options(OptionsContext *o, int is_input);
402 void show_usage(void);
404 void opt_output_file(void *optctx, const char *filename);
406 void assert_avoptions(AVDictionary *m);
408 int guess_input_channel_layout(InputStream *ist);
410 enum AVPixelFormat choose_pixel_fmt(AVStream *st, AVCodec *codec, enum AVPixelFormat target);
411 void choose_sample_fmt(AVStream *st, AVCodec *codec);
413 int configure_filtergraph(FilterGraph *fg);
414 int configure_output_filter(FilterGraph *fg, OutputFilter *ofilter, AVFilterInOut *out);
415 int ist_in_filtergraph(FilterGraph *fg, InputStream *ist);
416 FilterGraph *init_simple_filtergraph(InputStream *ist, OutputStream *ost);
418 int ffmpeg_parse_options(int argc, char **argv);
420 #endif /* FFMPEG_H */