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