FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ffmpeg.h
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
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.
8  *
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.
13  *
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
17  */
18 
19 #ifndef FFMPEG_H
20 #define FFMPEG_H
21 
22 #include "config.h"
23 
24 #include <stdint.h>
25 #include <stdio.h>
26 #include <signal.h>
27 
28 #if HAVE_PTHREADS
29 #include <pthread.h>
30 #endif
31 
32 #include "cmdutils.h"
33 
34 #include "libavformat/avformat.h"
35 #include "libavformat/avio.h"
36 
37 #include "libavcodec/avcodec.h"
38 
39 #include "libavfilter/avfilter.h"
40 
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"
48 
50 
51 #define VSYNC_AUTO -1
52 #define VSYNC_PASSTHROUGH 0
53 #define VSYNC_CFR 1
54 #define VSYNC_VFR 2
55 #define VSYNC_VSCFR 0xfe
56 #define VSYNC_DROP 0xff
57 
58 #define MAX_STREAMS 1024 /* arbitrary sanity check value */
59 
60 enum HWAccelID {
70 };
71 
72 typedef struct HWAccel {
73  const char *name;
75  enum HWAccelID id;
77 } HWAccel;
78 
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 */
86  char *linklabel; /* name of an output link, for mapping lavfi outputs */
87 } StreamMap;
88 
89 typedef struct {
90  int file_idx, stream_idx, channel_idx; // input
91  int ofile_idx, ostream_idx; // output
93 
94 typedef struct OptionsContext {
96 
97  /* input/output options */
98  int64_t start_time;
99  int64_t start_time_eof;
101  const char *format;
102 
115 
116  /* input options */
118  int loop;
119  int rate_emu;
122 
135 
136  /* output options */
139  AudioChannelMap *audio_channel_maps; /* one info entry per -map_channel */
140  int nb_audio_channel_maps; /* number of (valid) -map_channel settings */
144  const char **attachments;
146 
148 
149  int64_t recording_time;
150  int64_t stop_time;
151  uint64_t limit_filesize;
152  float mux_preload;
154  int shortest;
155 
160 
161  /* indexed by output file stream index */
164 
212  int nb_pass;
220  int nb_apad;
230 
231 typedef struct InputFilter {
233  struct InputStream *ist;
236  enum AVMediaType type; // AVMEDIA_TYPE_SUBTITLE for sub2video
237 
239 
240  // parameters configured for this input
241  int format;
242 
243  int width, height;
245 
247  int channels;
248  uint64_t channel_layout;
249 
251 
252  int eof;
253 } InputFilter;
254 
255 typedef struct OutputFilter {
257  struct OutputStream *ost;
260 
261  /* temporary storage until stream maps are processed */
264 
265  /* desired output stream properties */
266  int width, height;
268  int format;
270  uint64_t channel_layout;
271 
272  // those are only set if no format is specified and the encoder gives us multiple options
273  int *formats;
274  uint64_t *channel_layouts;
276 } OutputFilter;
277 
278 typedef struct FilterGraph {
279  int index;
280  const char *graph_desc;
281 
284 
289 } FilterGraph;
290 
291 typedef struct InputStream {
294  int discard; /* true if stream data should be discarded */
296  int decoding_needed; /* non zero if the packets must be decoded in 'raw_fifo', see DECODING_FOR_* */
297 #define DECODING_FOR_OST 1
298 #define DECODING_FOR_FILTER 2
299 
303  AVFrame *filter_frame; /* a ref of decoded_frame, to be sent to filters */
304 
305  int64_t start; /* time when read started */
306  /* predicted dts of the next packet read for this stream or (when there are
307  * several frames in a packet) of the next frame in current packet (in AV_TIME_BASE units) */
308  int64_t next_dts;
309  int64_t dts; ///< dts of the last packet read for this stream (in AV_TIME_BASE units)
310 
311  int64_t next_pts; ///< synthetic pts for the next decode frame (in AV_TIME_BASE units)
312  int64_t pts; ///< current pts of the decoded frame (in AV_TIME_BASE units)
314 
316 
317  int64_t min_pts; /* pts with the smallest value in a current stream */
318  int64_t max_pts; /* pts with the higher value in a current stream */
319 
320  // when forcing constant input framerate through -r,
321  // this contains the pts that will be given to the next decoded frame
322  int64_t cfr_next_pts;
323 
324  int64_t nb_samples; /* number of samples in the last decoded audio frame before looping */
325 
326  double ts_scale;
329  AVRational framerate; /* framerate forced with -r */
332 
334 
336  struct { /* previous decoded subtitle and related variables */
338  int ret;
340  } prev_sub;
341 
342  struct sub2video {
343  int64_t last_pts;
344  int64_t end_pts;
345  AVFifoBuffer *sub_queue; ///< queue of AVSubtitle* before filter init
347  int w, h;
348  } sub2video;
349 
350  int dr1;
351 
352  /* decoded data from this stream goes into all those filters
353  * currently video and audio only */
356 
358 
359  /* hwaccel options */
363 
364  /* hwaccel context */
366  void *hwaccel_ctx;
373 
374  /* stats */
375  // combined size of all the packets read
376  uint64_t data_size;
377  /* number of packets successfully read for this stream */
378  uint64_t nb_packets;
379  // number of frames/samples retrieved from the decoder
380  uint64_t frames_decoded;
381  uint64_t samples_decoded;
382 
383  int64_t *dts_buffer;
385 
386  int got_output;
387 } InputStream;
388 
389 typedef struct InputFile {
391  int eof_reached; /* true if eof reached */
392  int eagain; /* true if last read attempt returned EAGAIN */
393  int ist_index; /* index of first stream in input_streams */
394  int loop; /* set number of times input stream should be looped */
395  int64_t duration; /* actual duration of the longest stream in a file
396  at the moment when looping happens */
397  AVRational time_base; /* time base of the duration */
399 
400  int64_t ts_offset;
401  int64_t last_ts;
402  int64_t start_time; /* user-specified start time in AV_TIME_BASE or AV_NOPTS_VALUE */
404  int64_t recording_time;
405  int nb_streams; /* number of stream that ffmpeg is aware of; may be different
406  from ctx.nb_streams if new streams appear during av_read_frame() */
407  int nb_streams_warn; /* number of streams that the user was warned of */
408  int rate_emu;
410 
411 #if HAVE_PTHREADS
412  AVThreadMessageQueue *in_thread_queue;
413  pthread_t thread; /* thread reading from this file */
414  int non_blocking; /* reading packets from the thread should not block */
415  int joined; /* the thread has been joined */
416  int thread_queue_size; /* maximum number of queued packets */
417 #endif
418 } InputFile;
419 
427 };
428 
429 #define ABORT_ON_FLAG_EMPTY_OUTPUT (1 << 0)
430 
431 extern const char *const forced_keyframes_const_names[];
432 
433 typedef enum {
436 } OSTFinished ;
437 
438 typedef struct OutputStream {
439  int file_index; /* file index */
440  int index; /* stream index in the output file */
441  int source_index; /* InputStream index */
442  AVStream *st; /* stream in the output file */
443  int encoding_needed; /* true if encoding needed for this stream */
445  /* input pts and corresponding output pts
446  for A/V sync */
447  struct InputStream *sync_ist; /* input stream to sync against */
448  int64_t sync_opts; /* output frame counter, could be changed to some true timestamp */ // FIXME look at frame_number
449  /* pts of the first frame encoded for this stream, used for limiting
450  * recording time */
451  int64_t first_pts;
452  /* dts of the last packet sent to the muxer */
453  int64_t last_mux_dts;
454  // the timebase of the packets sent to the muxer
456 
460 
462  AVCodecParameters *ref_par; /* associated input codec parameters with encoders options applied */
464  int64_t max_frames;
469 
470  void *hwaccel_ctx;
471 
472  /* video only */
474  int is_cfr;
479 
481 
482  /* forced key frames */
483  int64_t *forced_kf_pts;
489 
490  /* audio only */
491  int *audio_channels_map; /* list of the channels id to pick from the source stream */
492  int audio_channels_mapped; /* number of channels in audio_channels_map */
493 
495  FILE *logfile;
496 
498  char *avfilter;
499  char *filters; ///< filtergraph associated to the -filter option
500  char *filters_script; ///< filtergraph script associated to the -filter_script option
501 
506  char *apad;
507  OSTFinished finished; /* no more packets should be written for this stream */
508  int unavailable; /* true if the steram is unavailable (possibly temporarily) */
510 
511  // init_output_stream() has been called for this stream
512  // The encoder and the bitstream filters have been initialized and the stream
513  // parameters are set in the AVStream.
515 
517 
518  const char *attachment_filename;
521  char *disposition;
522 
524 
527 
528  /* stats */
529  // combined size of all the packets written
530  uint64_t data_size;
531  // number of packets send to the muxer
532  uint64_t packets_written;
533  // number of frames/samples sent to the encoder
534  uint64_t frames_encoded;
535  uint64_t samples_encoded;
536 
537  /* packet quality factor */
538  int quality;
539 
541 
542  /* the packets are buffered here until the muxer is ready to be initialized */
544 
545  /* packet picture type */
547 
548  /* frame encode sum of squared error values */
549  int64_t error[4];
550 } OutputStream;
551 
552 typedef struct OutputFile {
555  int ost_index; /* index of the first stream in output_streams */
556  int64_t recording_time; ///< desired length of the resulting file in microseconds == AV_TIME_BASE units
557  int64_t start_time; ///< start time in microseconds == AV_TIME_BASE units
558  uint64_t limit_filesize; /* filesize limit expressed in bytes */
559 
560  int shortest;
561 
563 } OutputFile;
564 
565 extern InputStream **input_streams;
566 extern int nb_input_streams;
567 extern InputFile **input_files;
568 extern int nb_input_files;
569 
571 extern int nb_output_streams;
572 extern OutputFile **output_files;
573 extern int nb_output_files;
574 
575 extern FilterGraph **filtergraphs;
576 extern int nb_filtergraphs;
577 
578 extern char *vstats_filename;
579 extern char *sdp_filename;
580 
581 extern float audio_drift_threshold;
582 extern float dts_delta_threshold;
583 extern float dts_error_threshold;
584 
585 extern int audio_volume;
586 extern int audio_sync_method;
587 extern int video_sync_method;
588 extern float frame_drop_threshold;
589 extern int do_benchmark;
590 extern int do_benchmark_all;
591 extern int do_deinterlace;
592 extern int do_hex_dump;
593 extern int do_pkt_dump;
594 extern int copy_ts;
595 extern int start_at_zero;
596 extern int copy_tb;
597 extern int debug_ts;
598 extern int exit_on_error;
599 extern int abort_on_flags;
600 extern int print_stats;
601 extern int qp_hist;
602 extern int stdin_interaction;
603 extern int frame_bits_per_raw_sample;
604 extern AVIOContext *progress_avio;
605 extern float max_error_rate;
606 extern char *videotoolbox_pixfmt;
607 
608 extern int filter_nbthreads;
609 extern int filter_complex_nbthreads;
610 extern int vstats_version;
611 
612 extern const AVIOInterruptCB int_cb;
613 
614 extern const OptionDef options[];
615 extern const HWAccel hwaccels[];
616 extern int hwaccel_lax_profile_check;
617 extern AVBufferRef *hw_device_ctx;
618 #if CONFIG_QSV
619 extern char *qsv_device;
620 #endif
621 
622 
623 void term_init(void);
624 void term_exit(void);
625 
626 void reset_options(OptionsContext *o, int is_input);
627 void show_usage(void);
628 
629 void opt_output_file(void *optctx, const char *filename);
630 
633 
635 
636 enum AVPixelFormat choose_pixel_fmt(AVStream *st, AVCodecContext *avctx, AVCodec *codec, enum AVPixelFormat target);
637 void choose_sample_fmt(AVStream *st, AVCodec *codec);
638 
641 void check_filter_outputs(void);
646 
647 void sub2video_update(InputStream *ist, AVSubtitle *sub);
648 
650 
651 int ffmpeg_parse_options(int argc, char **argv);
652 
659 int vaapi_device_init(const char *device);
661 
662 #endif /* FFMPEG_H */
int64_t pts
current pts of the decoded frame (in AV_TIME_BASE units)
Definition: ffmpeg.h:312
int nb_bitstream_filters
Definition: ffmpeg.h:457
SpecifierOpt * passlogfiles
Definition: ffmpeg.h:213
int nb_dump_attachment
Definition: ffmpeg.h:126
int got_output
Definition: ffmpeg.h:337
int nb_metadata
Definition: ffmpeg.h:166
int nb_streamid_map
Definition: ffmpeg.h:163
int frame_number
Definition: ffmpeg.h:444
int width
Definition: ffmpeg.h:266
Definition: ffmpeg.h:421
enum HWAccelID active_hwaccel_id
Definition: ffmpeg.h:365
int keep_pix_fmt
Definition: ffmpeg.h:523
const char * s
Definition: avisynth_c.h:768
Bytestream IO Context.
Definition: avio.h:155
float mux_preload
Definition: ffmpeg.h:152
int64_t recording_time
desired length of the resulting file in microseconds == AV_TIME_BASE units
Definition: ffmpeg.h:556
HWAccelID
Definition: ffmpeg.h:60
Buffered I/O operations.
uint8_t * name
Definition: ffmpeg.h:259
int nb_outputs
Definition: ffmpeg.h:288
char * qsv_device
Definition: ffmpeg_qsv.c:31
AVDictionary * swr_opts
Definition: ffmpeg.h:504
enum AVPixelFormat choose_pixel_fmt(AVStream *st, AVCodecContext *avctx, AVCodec *codec, enum AVPixelFormat target)
Definition: ffmpeg_filter.c:63
This structure describes decoded (raw) audio or video data.
Definition: frame.h:187
int stream_copy
Definition: ffmpeg.h:509
AVRational frame_rate
Definition: ffmpeg.h:473
int64_t * forced_kf_pts
Definition: ffmpeg.h:483
int64_t start_time_eof
Definition: ffmpeg.h:99
AVBufferRef * hw_frames_ctx
Definition: ffmpeg.h:372
char * filters
filtergraph associated to the -filter option
Definition: ffmpeg.h:499
SpecifierOpt * hwaccel_output_formats
Definition: ffmpeg.h:131
int data_disable
Definition: ffmpeg.h:159
float mux_max_delay
Definition: ffmpeg.h:153
int exit_on_error
Definition: ffmpeg_opt.c:115
int64_t cfr_next_pts
Definition: ffmpeg.h:322
int accurate_seek
Definition: ffmpeg.h:409
OutputFile ** output_files
Definition: ffmpeg.c:151
int nb_forced_key_frames
Definition: ffmpeg.h:178
int * streamid_map
Definition: ffmpeg.h:162
Main libavfilter public API header.
int nb_stream_maps
Definition: ffmpeg.h:138
uint8_t * bsf_extradata_updated
Definition: ffmpeg.h:458
SpecifierOpt * copy_initial_nonkeyframes
Definition: ffmpeg.h:197
int ostream_idx
Definition: ffmpeg.h:91
int nb_chroma_intra_matrices
Definition: ffmpeg.h:190
AVRational framerate
Definition: ffmpeg.h:329
void choose_sample_fmt(AVStream *st, AVCodec *codec)
Definition: ffmpeg_filter.c:92
SpecifierOpt * reinit_filters
Definition: ffmpeg.h:205
SpecifierOpt * ts_scale
Definition: ffmpeg.h:123
int height
Definition: ffmpeg.h:243
AVCodecParserContext * parser
Definition: ffmpeg.h:525
int64_t max_pts
Definition: ffmpeg.h:318
AVFilterInOut * out_tmp
Definition: ffmpeg.h:262
int decoding_needed
Definition: ffmpeg.h:296
int nb_canvas_sizes
Definition: ffmpeg.h:210
The bitstream filter state.
Definition: avcodec.h:5830
int rotate_overridden
Definition: ffmpeg.h:477
int max_muxing_queue_size
Definition: ffmpeg.h:540
const char * b
Definition: vf_curves.c:113
SpecifierOpt * discard
Definition: ffmpeg.h:221
int nb_frame_pix_fmts
Definition: ffmpeg.h:114
void * hwaccel_ctx
Definition: ffmpeg.h:470
SpecifierOpt * sample_fmts
Definition: ffmpeg.h:173
SpecifierOpt * guess_layout_max
Definition: ffmpeg.h:217
int eagain
Definition: ffmpeg.h:392
Convenience header that includes libavutil's core.
forced_keyframes_const
Definition: ffmpeg.h:420
struct InputStream::@36 prev_sub
int quality
Definition: ffmpeg.h:538
int cuvid_init(AVCodecContext *s)
Definition: ffmpeg_cuvid.c:30
AVFrame * filter_frame
Definition: ffmpeg.h:303
int do_benchmark_all
Definition: ffmpeg_opt.c:108
int nb_program
Definition: ffmpeg.h:226
int last_dropped
Definition: ffmpeg.h:467
FilterGraph ** filtergraphs
Definition: ffmpeg.c:154
int(* hwaccel_get_buffer)(AVCodecContext *s, AVFrame *frame, int flags)
Definition: ffmpeg.h:368
int64_t input_ts_offset
Definition: ffmpeg.h:398
int do_hex_dump
Definition: ffmpeg_opt.c:109
int nb_filter_scripts
Definition: ffmpeg.h:204
const char * name
Definition: ffmpeg.h:73
uint64_t packets_written
Definition: ffmpeg.h:532
AVCodec.
Definition: avcodec.h:3681
int nb_dts_buffer
Definition: ffmpeg.h:384
SpecifierOpt * filters
Definition: ffmpeg.h:201
This struct describes the properties of an encoded stream.
Definition: avcodec.h:4058
int print_stats
Definition: ffmpeg_opt.c:117
float dts_error_threshold
Definition: ffmpeg_opt.c:100
int64_t start_time
start time in microseconds == AV_TIME_BASE units
Definition: ffmpeg.h:557
int index
Definition: ffmpeg.h:279
uint64_t data_size
Definition: ffmpeg.h:530
SpecifierOpt * qscale
Definition: ffmpeg.h:175
AVBSFContext ** bsf_ctx
Definition: ffmpeg.h:459
SpecifierOpt * frame_pix_fmts
Definition: ffmpeg.h:113
SpecifierOpt * chroma_intra_matrices
Definition: ffmpeg.h:189
struct FilterGraph * graph
Definition: ffmpeg.h:234
SpecifierOpt * intra_matrices
Definition: ffmpeg.h:185
int encoding_needed
Definition: ffmpeg.h:443
Format I/O context.
Definition: avformat.h:1349
void remove_avoptions(AVDictionary **a, AVDictionary *b)
Definition: ffmpeg.c:623
uint64_t samples_decoded
Definition: ffmpeg.h:381
struct InputStream * ist
Definition: ffmpeg.h:233
enum HWAccelID id
Definition: ffmpeg.h:75
uint64_t frames_decoded
Definition: ffmpeg.h:380
int header_written
Definition: ffmpeg.h:562
AVFilterGraph * graph
Definition: ffmpeg.h:282
Public dictionary API.
char * logfile_prefix
Definition: ffmpeg.h:494
int vdpau_init(AVCodecContext *s)
Definition: ffmpeg_vdpau.c:145
int user_set_discard
Definition: ffmpeg.h:295
int copy_initial_nonkeyframes
Definition: ffmpeg.h:519
int64_t * dts_buffer
Definition: ffmpeg.h:383
uint8_t
AVDictionary * sws_dict
Definition: ffmpeg.h:503
int nb_time_bases
Definition: ffmpeg.h:228
int stdin_interaction
Definition: ffmpeg_opt.c:119
FILE * logfile
Definition: ffmpeg.h:495
AVDictionary * opts
Definition: ffmpeg.h:554
Definition: eval.c:150
int do_benchmark
Definition: ffmpeg_opt.c:107
int audio_sync_method
Definition: ffmpeg_opt.c:103
int nb_max_frames
Definition: ffmpeg.h:168
int shortest
Definition: ffmpeg.h:560
int nb_output_streams
Definition: ffmpeg.c:150
static AVFrame * frame
int nb_streams
Definition: ffmpeg.h:405
int sync_file_index
Definition: ffmpeg.h:84
enum AVMediaType type
Definition: ffmpeg.h:236
AVDictionary * resample_opts
Definition: ffmpeg.h:505
int seek_timestamp
Definition: ffmpeg.h:100
static int flags
Definition: log.c:57
void reset_options(OptionsContext *o, int is_input)
AVFilterContext * filter
Definition: ffmpeg.h:256
int * formats
Definition: ffmpeg.h:273
SpecifierOpt * bitstream_filters
Definition: ffmpeg.h:169
int init_complex_filtergraph(FilterGraph *fg)
AVCodec * dec
Definition: ffmpeg.h:301
int top_field_first
Definition: ffmpeg.h:330
int file_index
Definition: ffmpeg.h:292
const OptionDef options[]
Definition: ffserver.c:3948
struct InputStream::sub2video sub2video
int64_t filter_in_rescale_delta_last
Definition: ffmpeg.h:315
int wrap_correction_done
Definition: ffmpeg.h:313
int ist_in_filtergraph(FilterGraph *fg, InputStream *ist)
int filter_complex_nbthreads
Definition: ffmpeg_opt.c:123
SpecifierOpt * disposition
Definition: ffmpeg.h:223
int64_t next_dts
Definition: ffmpeg.h:308
uint64_t channel_layout
Definition: ffmpeg.h:270
AVFifoBuffer * sub_queue
queue of AVSubtitle* before filter init
Definition: ffmpeg.h:345
Callback for checking whether to abort blocking functions.
Definition: avio.h:58
libswresample public header
int nb_top_field_first
Definition: ffmpeg.h:192
AVRational sample_aspect_ratio
Definition: ffmpeg.h:244
int rate_emu
Definition: ffmpeg.h:408
int nb_discard
Definition: ffmpeg.h:222
int sample_rate
Definition: ffmpeg.h:246
void check_filter_outputs(void)
enum AVPixelFormat hwaccel_pix_fmt
Definition: ffmpeg.h:370
int ffmpeg_parse_options(int argc, char **argv)
Definition: ffmpeg_opt.c:3216
AVFilterContext * filter
Definition: ffmpeg.h:232
void(* hwaccel_uninit)(AVCodecContext *s)
Definition: ffmpeg.h:367
int nb_filters
Definition: ffmpeg.h:202
int64_t start_time
Definition: ffmpeg.h:98
int64_t start
Definition: ffmpeg.h:305
int loop
Definition: ffmpeg.h:394
uint64_t nb_packets
Definition: ffmpeg.h:378
int seek_timestamp
Definition: ffmpeg.h:403
int64_t last_mux_dts
Definition: ffmpeg.h:453
int video_sync_method
Definition: ffmpeg_opt.c:104
int format
Definition: ffmpeg.h:241
char * sdp_filename
Definition: ffmpeg_opt.c:96
SpecifierOpt * apad
Definition: ffmpeg.h:219
int last_nb0_frames[3]
Definition: ffmpeg.h:468
int vaapi_device_init(const char *device)
Definition: ffmpeg_vaapi.c:219
int dr1
Definition: ffmpeg.h:350
int nb_hwaccel_devices
Definition: ffmpeg.h:130
AudioChannelMap * audio_channel_maps
Definition: ffmpeg.h:139
int nb_disposition
Definition: ffmpeg.h:224
SpecifierOpt * codec_tags
Definition: ffmpeg.h:171
SpecifierOpt * rc_overrides
Definition: ffmpeg.h:183
int(* init)(AVCodecContext *s)
Definition: ffmpeg.h:74
int video_disable
Definition: ffmpeg.h:156
int eof
Definition: ffmpeg.h:252
int nb_input_files
Definition: ffmpeg.c:147
int force_fps
Definition: ffmpeg.h:475
int nb_codec_names
Definition: ffmpeg.h:104
int qp_hist
Definition: ffmpeg_opt.c:118
StreamMap * stream_maps
Definition: ffmpeg.h:137
int hwaccel_lax_profile_check
Definition: ffmpeg_opt.c:92
float frame_drop_threshold
Definition: ffmpeg_opt.c:105
uint64_t limit_filesize
Definition: ffmpeg.h:151
const char * format
Definition: ffmpeg.h:101
int64_t error[4]
Definition: ffmpeg.h:549
int nb_passlogfiles
Definition: ffmpeg.h:214
int filter_nbthreads
Definition: ffmpeg_opt.c:122
int nb_force_fps
Definition: ffmpeg.h:180
OutputFilter * filter
Definition: ffmpeg.h:497
AVRational frame_aspect_ratio
Definition: ffmpeg.h:480
int nb_sample_fmts
Definition: ffmpeg.h:174
int file_index
Definition: ffmpeg.h:82
int nb_audio_channel_maps
Definition: ffmpeg.h:140
AVRational mux_timebase
Definition: ffmpeg.h:455
SpecifierOpt * filter_scripts
Definition: ffmpeg.h:203
int vaapi_decode_init(AVCodecContext *avctx)
Definition: ffmpeg_vaapi.c:136
int nb_attachments
Definition: ffmpeg.h:145
AVCodecContext * parser_avctx
Definition: ffmpeg.h:526
char * linklabel
Definition: ffmpeg.h:86
int nb_hwaccel_output_formats
Definition: ffmpeg.h:132
int nb_ts_scale
Definition: ffmpeg.h:124
int is_cfr
Definition: ffmpeg.h:474
SpecifierOpt * audio_channels
Definition: ffmpeg.h:105
uint64_t * channel_layouts
Definition: ffmpeg.h:274
int saw_first_ts
Definition: ffmpeg.h:327
int nb_audio_sample_rate
Definition: ffmpeg.h:108
int abort_on_flags
Definition: ffmpeg_opt.c:116
SpecifierOpt * time_bases
Definition: ffmpeg.h:227
int metadata_chapters_manual
Definition: ffmpeg.h:143
struct OutputStream * ost
Definition: ffmpeg.h:257
int accurate_seek
Definition: ffmpeg.h:120
char * apad
Definition: ffmpeg.h:506
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
SpecifierOpt * pass
Definition: ffmpeg.h:211
int64_t nb_samples
Definition: ffmpeg.h:324
SpecifierOpt * audio_sample_rate
Definition: ffmpeg.h:107
double forced_keyframes_expr_const_values[FKF_NB]
Definition: ffmpeg.h:488
int64_t duration
Definition: ffmpeg.h:395
void opt_output_file(void *optctx, const char *filename)
int dxva2_init(AVCodecContext *s)
Definition: ffmpeg_dxva2.c:409
int width
Definition: ffmpeg.h:243
int ifilter_parameters_from_frame(InputFilter *ifilter, const AVFrame *frame)
SpecifierOpt * dump_attachment
Definition: ffmpeg.h:125
void assert_avoptions(AVDictionary *m)
Definition: ffmpeg.c:632
SpecifierOpt * canvas_sizes
Definition: ffmpeg.h:209
int nb_codec_tags
Definition: ffmpeg.h:172
int qsv_init(AVCodecContext *s)
Definition: ffmpeg_qsv.c:71
int64_t last_ts
Definition: ffmpeg.h:401
SpecifierOpt * metadata_map
Definition: ffmpeg.h:193
int do_pkt_dump
Definition: ffmpeg_opt.c:110
int64_t max_frames
Definition: ffmpeg.h:464
int(* hwaccel_retrieve_data)(AVCodecContext *s, AVFrame *frame)
Definition: ffmpeg.h:369
int audio_channels_mapped
Definition: ffmpeg.h:492
SpecifierOpt * copy_prior_start
Definition: ffmpeg.h:199
int height
Definition: ffmpeg.h:266
SpecifierOpt * frame_aspect_ratios
Definition: ffmpeg.h:181
SpecifierOpt * frame_sizes
Definition: ffmpeg.h:111
int stream_idx
Definition: ffmpeg.h:90
int sample_rate
Definition: ffmpeg.h:269
int nb_hwaccels
Definition: ffmpeg.h:128
int inputs_done
Definition: ffmpeg.h:516
int vstats_version
Definition: ffmpeg_opt.c:124
int start_at_zero
Definition: ffmpeg_opt.c:112
int ret
Definition: ffmpeg.h:338
int audio_volume
Definition: ffmpeg_opt.c:102
Stream structure.
Definition: avformat.h:889
A linked-list of the inputs/outputs of the filter chain.
Definition: avfilter.h:1017
InputFilter ** filters
Definition: ffmpeg.h:354
int fix_sub_duration
Definition: ffmpeg.h:335
int64_t recording_time
Definition: ffmpeg.h:404
SpecifierOpt * hwaccels
Definition: ffmpeg.h:127
Definition: ffmpeg.h:72
SpecifierOpt * frame_rates
Definition: ffmpeg.h:109
AVStream * st
Definition: ffmpeg.h:293
int nb_presets
Definition: ffmpeg.h:196
int ost_index
Definition: ffmpeg.h:555
struct InputStream * sync_ist
Definition: ffmpeg.h:447
Libavcodec external API header.
double ts_scale
Definition: ffmpeg.h:326
int64_t recording_time
Definition: ffmpeg.h:149
int unavailable
Definition: ffmpeg.h:508
void term_exit(void)
Definition: ffmpeg.c:315
int chapters_input_file
Definition: ffmpeg.h:147
int64_t stop_time
Definition: ffmpeg.h:150
float max_error_rate
Definition: ffmpeg_opt.c:121
uint64_t frames_encoded
Definition: ffmpeg.h:534
int nb_copy_prior_start
Definition: ffmpeg.h:200
AVFifoBuffer * muxing_queue
Definition: ffmpeg.h:543
OutputStream ** output_streams
Definition: ffmpeg.c:149
int ist_index
Definition: ffmpeg.h:393
const char * graph_desc
Definition: ffmpeg.h:280
int guess_layout_max
Definition: ffmpeg.h:331
int64_t start_time
Definition: ffmpeg.h:402
main external API structure.
Definition: avcodec.h:1732
InputFile ** input_files
Definition: ffmpeg.c:146
int rate_emu
Definition: ffmpeg.h:119
int * sample_rates
Definition: ffmpeg.h:275
int metadata_streams_manual
Definition: ffmpeg.h:142
const char * attachment_filename
Definition: ffmpeg.h:518
int configure_output_filter(FilterGraph *fg, OutputFilter *ofilter, AVFilterInOut *out)
a very simple circular buffer FIFO implementation
AVRational time_base
Definition: ffmpeg.h:397
AVCodecContext * enc_ctx
Definition: ffmpeg.h:461
int audio_disable
Definition: ffmpeg.h:157
int64_t input_ts_offset
Definition: ffmpeg.h:117
int nb_filtergraphs
Definition: ffmpeg.c:155
AVFrame * decoded_frame
Definition: ffmpeg.h:302
AVBufferRef * hw_frames_ctx
Definition: ffmpeg.h:250
int nb_bitstream_filters
Definition: ffmpeg.h:170
SpecifierOpt * top_field_first
Definition: ffmpeg.h:191
int channels
Definition: ffmpeg.h:247
int * audio_channels_map
Definition: ffmpeg.h:491
int configure_filtergraph(FilterGraph *fg)
Rational number (pair of numerator and denominator).
Definition: rational.h:58
int file_index
Definition: ffmpeg.h:439
int metadata_global_manual
Definition: ffmpeg.h:141
double rotate_override_value
Definition: ffmpeg.h:478
int64_t sync_opts
Definition: ffmpeg.h:448
char * vstats_filename
Definition: ffmpeg_opt.c:95
AVCodecContext * dec_ctx
Definition: ffmpeg.h:300
SpecifierOpt * force_fps
Definition: ffmpeg.h:179
char * disposition
Definition: ffmpeg.h:521
int filtergraph_is_simple(FilterGraph *fg)
AVMediaType
Definition: avutil.h:199
int nb_fix_sub_duration
Definition: ffmpeg.h:208
int nb_inter_matrices
Definition: ffmpeg.h:188
int nb_streams_warn
Definition: ffmpeg.h:407
AVDictionary * decoder_opts
Definition: ffmpeg.h:328
int shortest
Definition: ffmpeg.h:154
int autorotate
Definition: ffmpeg.h:333
int frame_bits_per_raw_sample
Definition: ffmpeg_opt.c:120
int64_t ts_offset
Definition: ffmpeg.h:400
int nb_qscale
Definition: ffmpeg.h:176
char * filters_script
filtergraph script associated to the -filter_script option
Definition: ffmpeg.h:500
SpecifierOpt * hwaccel_devices
Definition: ffmpeg.h:129
int nb_input_streams
Definition: ffmpeg.c:145
float audio_drift_threshold
Definition: ffmpeg_opt.c:98
enum AVPixelFormat hwaccel_output_format
Definition: ffmpeg.h:362
AVFrame * filtered_frame
Definition: ffmpeg.h:465
int nb_autorotate
Definition: ffmpeg.h:134
int nb_audio_channels
Definition: ffmpeg.h:106
int source_index
Definition: ffmpeg.h:441
InputStream ** input_streams
Definition: ffmpeg.c:144
int copy_prior_start
Definition: ffmpeg.h:520
SpecifierOpt * metadata
Definition: ffmpeg.h:165
AVIOContext * progress_avio
Definition: ffmpeg.c:140
int nb_filters
Definition: ffmpeg.h:355
AVExpr * forced_keyframes_pexpr
Definition: ffmpeg.h:487
int64_t dts
dts of the last packet read for this stream (in AV_TIME_BASE units)
Definition: ffmpeg.h:309
int forced_kf_count
Definition: ffmpeg.h:484
int nb_intra_matrices
Definition: ffmpeg.h:186
OSTFinished finished
Definition: ffmpeg.h:507
char * forced_keyframes
Definition: ffmpeg.h:486
int nb_frame_rates
Definition: ffmpeg.h:110
uint64_t data_size
Definition: ffmpeg.h:376
const AVIOInterruptCB int_cb
Definition: ffmpeg.c:464
A reference to a data buffer.
Definition: buffer.h:81
int vda_init(AVCodecContext *s)
int64_t next_pts
synthetic pts for the next decode frame (in AV_TIME_BASE units)
Definition: ffmpeg.h:311
Main libavformat public API header.
int
SpecifierOpt * max_muxing_queue_size
Definition: ffmpeg.h:215
int reconfiguration
Definition: ffmpeg.h:283
struct FilterGraph * graph
Definition: ffmpeg.h:258
uint64_t limit_filesize
Definition: ffmpeg.h:558
SpecifierOpt * presets
Definition: ffmpeg.h:195
SpecifierOpt * program
Definition: ffmpeg.h:225
int reinit_filters
Definition: ffmpeg.h:357
int nb_frame_sizes
Definition: ffmpeg.h:112
AVCodecParameters * ref_par
Definition: ffmpeg.h:462
Utilties for rational number calculation.
OptionGroup * g
Definition: ffmpeg.h:95
SpecifierOpt * inter_matrices
Definition: ffmpeg.h:187
const char *const forced_keyframes_const_names[]
Definition: ffmpeg.c:117
AVStream * st
Definition: muxing.c:54
SpecifierOpt * forced_key_frames
Definition: ffmpeg.h:177
uint64_t samples_encoded
Definition: ffmpeg.h:535
const char ** attachments
Definition: ffmpeg.h:144
int nb_max_muxing_queue_size
Definition: ffmpeg.h:216
AVFrame * last_frame
Definition: ffmpeg.h:466
uint64_t channel_layout
Definition: ffmpeg.h:248
int copy_ts
Definition: ffmpeg_opt.c:111
AVFormatContext * ctx
Definition: ffmpeg.h:390
int pict_type
Definition: ffmpeg.h:546
AVBufferRef * hw_device_ctx
Definition: ffmpeg_opt.c:93
int stream_index
Definition: ffmpeg.h:83
AVCodec * enc
Definition: ffmpeg.h:463
AVSubtitle subtitle
Definition: ffmpeg.h:339
enum AVPixelFormat pix_fmt
Definition: ffmpeg.h:76
int eof_reached
Definition: ffmpeg.h:391
int nb_metadata_map
Definition: ffmpeg.h:194
int forced_kf_index
Definition: ffmpeg.h:485
int nb_rc_overrides
Definition: ffmpeg.h:184
int do_deinterlace
Definition: ffmpeg_opt.c:106
SpecifierOpt * fix_sub_duration
Definition: ffmpeg.h:207
Definition: ffmpeg.h:426
pixel format definitions
char * avfilter
Definition: ffmpeg.h:498
SpecifierOpt * autorotate
Definition: ffmpeg.h:133
uint8_t * name
Definition: ffmpeg.h:235
float dts_delta_threshold
Definition: ffmpeg_opt.c:99
void * hwaccel_ctx
Definition: ffmpeg.h:366
int guess_input_channel_layout(InputStream *ist)
Definition: ffmpeg.c:2102
int top_field_first
Definition: ffmpeg.h:476
OutputFilter ** outputs
Definition: ffmpeg.h:287
SpecifierOpt * max_frames
Definition: ffmpeg.h:167
int nb_copy_initial_nonkeyframes
Definition: ffmpeg.h:198
int disabled
Definition: ffmpeg.h:81
AVRational frame_rate
Definition: ffmpeg.h:267
AVFormatContext * ctx
Definition: ffmpeg.h:553
int nb_output_files
Definition: ffmpeg.c:152
SpecifierOpt * codec_names
Definition: ffmpeg.h:103
void show_usage(void)
Definition: ffmpeg_opt.c:3166
int thread_queue_size
Definition: ffmpeg.h:121
An instance of a filter.
Definition: avfilter.h:323
char * hwaccel_device
Definition: ffmpeg.h:361
AVDictionary * encoder_opts
Definition: ffmpeg.h:502
FILE * out
Definition: movenc.c:54
InputFilter ** inputs
Definition: ffmpeg.h:285
char * videotoolbox_pixfmt
enum AVPixelFormat hwaccel_retrieved_pix_fmt
Definition: ffmpeg.h:371
int sync_stream_index
Definition: ffmpeg.h:85
int format
Definition: ffmpeg.h:268
int copy_tb
Definition: ffmpeg_opt.c:113
int64_t min_pts
Definition: ffmpeg.h:317
int initialized
Definition: ffmpeg.h:514
int init_simple_filtergraph(InputStream *ist, OutputStream *ost)
int discard
Definition: ffmpeg.h:294
enum HWAccelID hwaccel_id
Definition: ffmpeg.h:360
int64_t first_pts
Definition: ffmpeg.h:451
int nb_inputs
Definition: ffmpeg.h:286
int index
Definition: ffmpeg.h:440
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
OSTFinished
Definition: ffmpeg.h:433
enum AVMediaType type
Definition: ffmpeg.h:263
int nb_reinit_filters
Definition: ffmpeg.h:206
AVFifoBuffer * frame_queue
Definition: ffmpeg.h:238
int debug_ts
Definition: ffmpeg_opt.c:114
void sub2video_update(InputStream *ist, AVSubtitle *sub)
Definition: ffmpeg.c:232
int nb_guess_layout_max
Definition: ffmpeg.h:218
void term_init(void)
Definition: ffmpeg.c:373
int nb_frame_aspect_ratios
Definition: ffmpeg.h:182
const HWAccel hwaccels[]
Definition: ffmpeg_opt.c:68
int videotoolbox_init(AVCodecContext *s)
Definition: ffmpeg.h:425
simple arithmetic expression evaluator
int subtitle_disable
Definition: ffmpeg.h:158