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"
41 #include "libavutil/avutil.h"
42 #include "libavutil/dict.h"
43 #include "libavutil/eval.h"
44 #include "libavutil/fifo.h"
45 #include "libavutil/pixfmt.h"
46 #include "libavutil/rational.h"
47 #include "libavutil/threadmessage.h"
49 #include "libswresample/swresample.h"
52 #define VSYNC_PASSTHROUGH 0
55 #define VSYNC_VSCFR 0xfe
56 #define VSYNC_DROP 0xff
58 #define MAX_STREAMS 1024 /* arbitrary sanity check value */
72 typedef struct HWAccel
{
74 int (*init
)(AVCodecContext
*s
);
76 enum AVPixelFormat pix_fmt
;
79 /* select an input stream for an output stream */
80 typedef struct StreamMap
{
81 int disabled
; /* 1 is this mapping is disabled by a negative map */
85 int sync_stream_index
;
86 char *linklabel
; /* name of an output link, for mapping lavfi outputs */
90 int file_idx
, stream_idx
, channel_idx
; // input
91 int ofile_idx
, ostream_idx
; // output
94 typedef struct OptionsContext
{
97 /* input/output options */
99 int64_t start_time_eof
;
103 SpecifierOpt
*codec_names
;
105 SpecifierOpt
*audio_channels
;
106 int nb_audio_channels
;
107 SpecifierOpt
*audio_sample_rate
;
108 int nb_audio_sample_rate
;
109 SpecifierOpt
*frame_rates
;
111 SpecifierOpt
*frame_sizes
;
113 SpecifierOpt
*frame_pix_fmts
;
114 int nb_frame_pix_fmts
;
117 int64_t input_ts_offset
;
121 int thread_queue_size
;
123 SpecifierOpt
*ts_scale
;
125 SpecifierOpt
*dump_attachment
;
126 int nb_dump_attachment
;
127 SpecifierOpt
*hwaccels
;
129 SpecifierOpt
*hwaccel_devices
;
130 int nb_hwaccel_devices
;
131 SpecifierOpt
*hwaccel_output_formats
;
132 int nb_hwaccel_output_formats
;
133 SpecifierOpt
*autorotate
;
137 StreamMap
*stream_maps
;
139 AudioChannelMap
*audio_channel_maps
; /* one info entry per -map_channel */
140 int nb_audio_channel_maps
; /* number of (valid) -map_channel settings */
141 int metadata_global_manual
;
142 int metadata_streams_manual
;
143 int metadata_chapters_manual
;
144 const char **attachments
;
147 int chapters_input_file
;
149 int64_t recording_time
;
151 uint64_t limit_filesize
;
158 int subtitle_disable
;
161 /* indexed by output file stream index */
165 SpecifierOpt
*metadata
;
167 SpecifierOpt
*max_frames
;
169 SpecifierOpt
*bitstream_filters
;
170 int nb_bitstream_filters
;
171 SpecifierOpt
*codec_tags
;
173 SpecifierOpt
*sample_fmts
;
175 SpecifierOpt
*qscale
;
177 SpecifierOpt
*forced_key_frames
;
178 int nb_forced_key_frames
;
179 SpecifierOpt
*force_fps
;
181 SpecifierOpt
*frame_aspect_ratios
;
182 int nb_frame_aspect_ratios
;
183 SpecifierOpt
*rc_overrides
;
185 SpecifierOpt
*intra_matrices
;
186 int nb_intra_matrices
;
187 SpecifierOpt
*inter_matrices
;
188 int nb_inter_matrices
;
189 SpecifierOpt
*chroma_intra_matrices
;
190 int nb_chroma_intra_matrices
;
191 SpecifierOpt
*top_field_first
;
192 int nb_top_field_first
;
193 SpecifierOpt
*metadata_map
;
195 SpecifierOpt
*presets
;
197 SpecifierOpt
*copy_initial_nonkeyframes
;
198 int nb_copy_initial_nonkeyframes
;
199 SpecifierOpt
*copy_prior_start
;
200 int nb_copy_prior_start
;
201 SpecifierOpt
*filters
;
203 SpecifierOpt
*filter_scripts
;
204 int nb_filter_scripts
;
205 SpecifierOpt
*reinit_filters
;
206 int nb_reinit_filters
;
207 SpecifierOpt
*fix_sub_duration
;
208 int nb_fix_sub_duration
;
209 SpecifierOpt
*canvas_sizes
;
213 SpecifierOpt
*passlogfiles
;
215 SpecifierOpt
*max_muxing_queue_size
;
216 int nb_max_muxing_queue_size
;
217 SpecifierOpt
*guess_layout_max
;
218 int nb_guess_layout_max
;
221 SpecifierOpt
*discard
;
223 SpecifierOpt
*disposition
;
225 SpecifierOpt
*program
;
229 typedef struct InputFilter
{
230 AVFilterContext
*filter
;
231 struct InputStream
*ist
;
232 struct FilterGraph
*graph
;
236 typedef struct OutputFilter
{
237 AVFilterContext
*filter
;
238 struct OutputStream
*ost
;
239 struct FilterGraph
*graph
;
242 /* temporary storage until stream maps are processed */
243 AVFilterInOut
*out_tmp
;
244 enum AVMediaType type
;
247 typedef struct FilterGraph
{
249 const char *graph_desc
;
251 AVFilterGraph
*graph
;
254 InputFilter
**inputs
;
256 OutputFilter
**outputs
;
260 typedef struct InputStream
{
263 int discard
; /* true if stream data should be discarded */
264 int user_set_discard
;
265 int decoding_needed
; /* non zero if the packets must be decoded in 'raw_fifo', see DECODING_FOR_* */
266 #define DECODING_FOR_OST 1
267 #define DECODING_FOR_FILTER 2
269 AVCodecContext
*dec_ctx
;
271 AVFrame
*decoded_frame
;
272 AVFrame
*filter_frame
; /* a ref of decoded_frame, to be sent to filters */
274 int64_t start
; /* time when read started */
275 /* predicted dts of the next packet read for this stream or (when there are
276 * several frames in a packet) of the next frame in current packet (in AV_TIME_BASE units) */
278 int64_t dts
; ///< dts of the last packet read for this stream (in AV_TIME_BASE units)
280 int64_t next_pts
; ///< synthetic pts for the next decode frame (in AV_TIME_BASE units)
281 int64_t pts
; ///< current pts of the decoded frame (in AV_TIME_BASE units)
282 int wrap_correction_done
;
284 int64_t filter_in_rescale_delta_last
;
286 int64_t min_pts
; /* pts with the smallest value in a current stream */
287 int64_t max_pts
; /* pts with the higher value in a current stream */
288 int64_t nb_samples
; /* number of samples in the last decoded audio frame before looping */
292 AVDictionary
*decoder_opts
;
293 AVRational framerate
; /* framerate forced with -r */
295 int guess_layout_max
;
300 int resample_pix_fmt
;
302 int resample_sample_fmt
;
303 int resample_sample_rate
;
304 int resample_channels
;
305 uint64_t resample_channel_layout
;
307 int fix_sub_duration
;
308 struct { /* previous decoded subtitle and related variables */
323 /* decoded data from this stream goes into all those filters
324 * currently video and audio only */
325 InputFilter
**filters
;
330 /* hwaccel options */
331 enum HWAccelID hwaccel_id
;
332 char *hwaccel_device
;
333 enum AVPixelFormat hwaccel_output_format
;
335 /* hwaccel context */
336 enum HWAccelID active_hwaccel_id
;
338 void (*hwaccel_uninit
)(AVCodecContext
*s
);
339 int (*hwaccel_get_buffer
)(AVCodecContext
*s
, AVFrame
*frame
, int flags
);
340 int (*hwaccel_retrieve_data
)(AVCodecContext
*s
, AVFrame
*frame
);
341 enum AVPixelFormat hwaccel_pix_fmt
;
342 enum AVPixelFormat hwaccel_retrieved_pix_fmt
;
343 AVBufferRef
*hw_frames_ctx
;
346 // combined size of all the packets read
348 /* number of packets successfully read for this stream */
350 // number of frames/samples retrieved from the decoder
351 uint64_t frames_decoded
;
352 uint64_t samples_decoded
;
358 typedef struct InputFile
{
359 AVFormatContext
*ctx
;
360 int eof_reached
; /* true if eof reached */
361 int eagain
; /* true if last read attempt returned EAGAIN */
362 int ist_index
; /* index of first stream in input_streams */
363 int loop
; /* set number of times input stream should be looped */
364 int64_t duration
; /* actual duration of the longest stream in a file
365 at the moment when looping happens */
366 AVRational time_base
; /* time base of the duration */
367 int64_t input_ts_offset
;
371 int64_t start_time
; /* user-specified start time in AV_TIME_BASE or AV_NOPTS_VALUE */
373 int64_t recording_time
;
374 int nb_streams
; /* number of stream that ffmpeg is aware of; may be different
375 from ctx.nb_streams if new streams appear during av_read_frame() */
376 int nb_streams_warn
; /* number of streams that the user was warned of */
381 AVThreadMessageQueue
*in_thread_queue
;
382 pthread_t thread
; /* thread reading from this file */
383 int non_blocking
; /* reading packets from the thread should not block */
384 int joined
; /* the thread has been joined */
385 int thread_queue_size
; /* maximum number of queued packets */
389 enum forced_keyframes_const
{
398 #define ABORT_ON_FLAG_EMPTY_OUTPUT (1 << 0)
400 extern const char *const forced_keyframes_const_names
[];
403 ENCODER_FINISHED
= 1,
407 typedef struct OutputStream
{
408 int file_index
; /* file index */
409 int index
; /* stream index in the output file */
410 int source_index
; /* InputStream index */
411 AVStream
*st
; /* stream in the output file */
412 int encoding_needed
; /* true if encoding needed for this stream */
414 /* input pts and corresponding output pts
416 struct InputStream
*sync_ist
; /* input stream to sync against */
417 int64_t sync_opts
; /* output frame counter, could be changed to some true timestamp */ // FIXME look at frame_number
418 /* pts of the first frame encoded for this stream, used for limiting
421 /* dts of the last packet sent to the muxer */
422 int64_t last_mux_dts
;
424 int nb_bitstream_filters
;
425 uint8_t *bsf_extradata_updated
;
426 AVBSFContext
**bsf_ctx
;
428 AVCodecContext
*enc_ctx
;
429 AVCodecParameters
*ref_par
; /* associated input codec parameters with encoders options applied */
432 AVFrame
*filtered_frame
;
435 int last_nb0_frames
[3];
440 AVRational frame_rate
;
444 int rotate_overridden
;
446 AVRational frame_aspect_ratio
;
448 /* forced key frames */
449 int64_t *forced_kf_pts
;
452 char *forced_keyframes
;
453 AVExpr
*forced_keyframes_pexpr
;
454 double forced_keyframes_expr_const_values
[FKF_NB
];
457 int *audio_channels_map
; /* list of the channels id to pick from the source stream */
458 int audio_channels_mapped
; /* number of channels in audio_channels_map */
460 char *logfile_prefix
;
463 OutputFilter
*filter
;
465 char *filters
; ///< filtergraph associated to the -filter option
466 char *filters_script
; ///< filtergraph script associated to the -filter_script option
468 AVDictionary
*encoder_opts
;
469 AVDictionary
*sws_dict
;
470 AVDictionary
*swr_opts
;
471 AVDictionary
*resample_opts
;
473 OSTFinished finished
; /* no more packets should be written for this stream */
474 int unavailable
; /* true if the steram is unavailable (possibly temporarily) */
477 // init_output_stream() has been called for this stream
478 // The encoder and the bitstream filters have been initialized and the stream
479 // parameters are set in the AVStream.
482 const char *attachment_filename
;
483 int copy_initial_nonkeyframes
;
484 int copy_prior_start
;
489 AVCodecParserContext
*parser
;
490 AVCodecContext
*parser_avctx
;
493 // combined size of all the packets written
495 // number of packets send to the muxer
496 uint64_t packets_written
;
497 // number of frames/samples sent to the encoder
498 uint64_t frames_encoded
;
499 uint64_t samples_encoded
;
501 /* packet quality factor */
504 int max_muxing_queue_size
;
506 /* the packets are buffered here until the muxer is ready to be initialized */
507 AVFifoBuffer
*muxing_queue
;
509 /* packet picture type */
512 /* frame encode sum of squared error values */
516 typedef struct OutputFile
{
517 AVFormatContext
*ctx
;
519 int ost_index
; /* index of the first stream in output_streams */
520 int64_t recording_time
; ///< desired length of the resulting file in microseconds == AV_TIME_BASE units
521 int64_t start_time
; ///< start time in microseconds == AV_TIME_BASE units
522 uint64_t limit_filesize
; /* filesize limit expressed in bytes */
529 extern InputStream
**input_streams
;
530 extern int nb_input_streams
;
531 extern InputFile
**input_files
;
532 extern int nb_input_files
;
534 extern OutputStream
**output_streams
;
535 extern int nb_output_streams
;
536 extern OutputFile
**output_files
;
537 extern int nb_output_files
;
539 extern FilterGraph
**filtergraphs
;
540 extern int nb_filtergraphs
;
542 extern char *vstats_filename
;
543 extern char *sdp_filename
;
545 extern float audio_drift_threshold
;
546 extern float dts_delta_threshold
;
547 extern float dts_error_threshold
;
549 extern int audio_volume
;
550 extern int audio_sync_method
;
551 extern int video_sync_method
;
552 extern float frame_drop_threshold
;
553 extern int do_benchmark
;
554 extern int do_benchmark_all
;
555 extern int do_deinterlace
;
556 extern int do_hex_dump
;
557 extern int do_pkt_dump
;
559 extern int start_at_zero
;
562 extern int exit_on_error
;
563 extern int abort_on_flags
;
564 extern int print_stats
;
566 extern int stdin_interaction
;
567 extern int frame_bits_per_raw_sample
;
568 extern AVIOContext
*progress_avio
;
569 extern float max_error_rate
;
570 extern char *videotoolbox_pixfmt
;
572 extern const AVIOInterruptCB int_cb
;
574 extern const OptionDef options
[];
575 extern const HWAccel hwaccels
[];
576 extern int hwaccel_lax_profile_check
;
577 extern AVBufferRef
*hw_device_ctx
;
580 void term_init(void);
581 void term_exit(void);
583 void reset_options(OptionsContext
*o
, int is_input
);
584 void show_usage(void);
586 void opt_output_file(void *optctx
, const char *filename
);
588 void remove_avoptions(AVDictionary
**a
, AVDictionary
*b
);
589 void assert_avoptions(AVDictionary
*m
);
591 int guess_input_channel_layout(InputStream
*ist
);
593 enum AVPixelFormat
choose_pixel_fmt(AVStream
*st
, AVCodecContext
*avctx
, AVCodec
*codec
, enum AVPixelFormat target
);
594 void choose_sample_fmt(AVStream
*st
, AVCodec
*codec
);
596 int configure_filtergraph(FilterGraph
*fg
);
597 int configure_output_filter(FilterGraph
*fg
, OutputFilter
*ofilter
, AVFilterInOut
*out
);
598 int ist_in_filtergraph(FilterGraph
*fg
, InputStream
*ist
);
599 int filtergraph_is_simple(FilterGraph
*fg
);
600 int init_simple_filtergraph(InputStream
*ist
, OutputStream
*ost
);
601 int init_complex_filtergraph(FilterGraph
*fg
);
603 int ffmpeg_parse_options(int argc
, char **argv
);
605 int vdpau_init(AVCodecContext
*s
);
606 int dxva2_init(AVCodecContext
*s
);
607 int vda_init(AVCodecContext
*s
);
608 int videotoolbox_init(AVCodecContext
*s
);
609 int qsv_init(AVCodecContext
*s
);
610 int qsv_transcode_init(OutputStream
*ost
);
611 int vaapi_decode_init(AVCodecContext
*avctx
);
612 int vaapi_device_init(const char *device
);
613 int cuvid_init(AVCodecContext
*s
);
614 int cuvid_transcode_init(OutputStream
*ost
);
616 #endif /* FFMPEG_H */