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 {
66 };
67 
68 typedef struct HWAccel {
69  const char *name;
70  int (*init)(AVCodecContext *s);
71  enum HWAccelID id;
73 } HWAccel;
74 
75 /* select an input stream for an output stream */
76 typedef struct StreamMap {
77  int disabled; /* 1 is this mapping is disabled by a negative map */
82  char *linklabel; /* name of an output link, for mapping lavfi outputs */
83 } StreamMap;
84 
85 typedef struct {
86  int file_idx, stream_idx, channel_idx; // input
87  int ofile_idx, ostream_idx; // output
89 
90 typedef struct OptionsContext {
92 
93  /* input/output options */
94  int64_t start_time;
96  const char *format;
97 
110 
111  /* input options */
113  int rate_emu;
116 
127 
128  /* output options */
131  AudioChannelMap *audio_channel_maps; /* one info entry per -map_channel */
132  int nb_audio_channel_maps; /* number of (valid) -map_channel settings */
136  const char **attachments;
138 
140 
141  int64_t recording_time;
142  int64_t stop_time;
143  uint64_t limit_filesize;
144  float mux_preload;
146  int shortest;
147 
152 
153  /* indexed by output file stream index */
156 
204  int nb_pass;
210  int nb_apad;
216 
217 typedef struct InputFilter {
219  struct InputStream *ist;
222 } InputFilter;
223 
224 typedef struct OutputFilter {
226  struct OutputStream *ost;
229 
230  /* temporary storage until stream maps are processed */
232 } OutputFilter;
233 
234 typedef struct FilterGraph {
235  int index;
236  const char *graph_desc;
237 
240 
245 } FilterGraph;
246 
247 typedef struct InputStream {
250  int discard; /* true if stream data should be discarded */
252  int decoding_needed; /* non zero if the packets must be decoded in 'raw_fifo', see DECODING_FOR_* */
253 #define DECODING_FOR_OST 1
254 #define DECODING_FOR_FILTER 2
255 
259  AVFrame *filter_frame; /* a ref of decoded_frame, to be sent to filters */
260 
261  int64_t start; /* time when read started */
262  /* predicted dts of the next packet read for this stream or (when there are
263  * several frames in a packet) of the next frame in current packet (in AV_TIME_BASE units) */
264  int64_t next_dts;
265  int64_t dts; ///< dts of the last packet read for this stream (in AV_TIME_BASE units)
266 
267  int64_t next_pts; ///< synthetic pts for the next decode frame (in AV_TIME_BASE units)
268  int64_t pts; ///< current pts of the decoded frame (in AV_TIME_BASE units)
270 
272 
273  double ts_scale;
277  AVRational framerate; /* framerate forced with -r */
280 
285 
290 
292  struct { /* previous decoded subtitle and related variables */
294  int ret;
296  } prev_sub;
297 
298  struct sub2video {
299  int64_t last_pts;
300  int64_t end_pts;
302  int w, h;
303  } sub2video;
304 
305  int dr1;
306 
307  /* decoded data from this stream goes into all those filters
308  * currently video and audio only */
311 
313 
314  /* hwaccel options */
317 
318  /* hwaccel context */
320  void *hwaccel_ctx;
326 
327  /* stats */
328  // combined size of all the packets read
329  uint64_t data_size;
330  /* number of packets successfully read for this stream */
331  uint64_t nb_packets;
332  // number of frames/samples retrieved from the decoder
333  uint64_t frames_decoded;
334  uint64_t samples_decoded;
335 } InputStream;
336 
337 typedef struct InputFile {
339  int eof_reached; /* true if eof reached */
340  int eagain; /* true if last read attempt returned EAGAIN */
341  int ist_index; /* index of first stream in input_streams */
343  int64_t ts_offset;
344  int64_t last_ts;
345  int64_t start_time; /* user-specified start time in AV_TIME_BASE or AV_NOPTS_VALUE */
347  int64_t recording_time;
348  int nb_streams; /* number of stream that ffmpeg is aware of; may be different
349  from ctx.nb_streams if new streams appear during av_read_frame() */
350  int nb_streams_warn; /* number of streams that the user was warned of */
351  int rate_emu;
353 
354 #if HAVE_PTHREADS
355  AVThreadMessageQueue *in_thread_queue;
356  pthread_t thread; /* thread reading from this file */
357  int non_blocking; /* reading packets from the thread should not block */
358  int joined; /* the thread has been joined */
359  int thread_queue_size; /* maximum number of queued packets */
360 #endif
361 } InputFile;
362 
370 };
371 
372 extern const char *const forced_keyframes_const_names[];
373 
374 typedef enum {
377 } OSTFinished ;
378 
379 typedef struct OutputStream {
380  int file_index; /* file index */
381  int index; /* stream index in the output file */
382  int source_index; /* InputStream index */
383  AVStream *st; /* stream in the output file */
384  int encoding_needed; /* true if encoding needed for this stream */
386  /* input pts and corresponding output pts
387  for A/V sync */
388  struct InputStream *sync_ist; /* input stream to sync against */
389  int64_t sync_opts; /* output frame counter, could be changed to some true timestamp */ // FIXME look at frame_number
390  /* pts of the first frame encoded for this stream, used for limiting
391  * recording time */
392  int64_t first_pts;
393  /* dts of the last packet sent to the muxer */
394  int64_t last_mux_dts;
398  int64_t max_frames;
403 
404  /* video only */
409 
411 
412  /* forced key frames */
413  int64_t *forced_kf_pts;
419 
420  /* audio only */
421  int *audio_channels_map; /* list of the channels id to pick from the source stream */
422  int audio_channels_mapped; /* number of channels in audio_channels_map */
423 
425  FILE *logfile;
426 
428  char *avfilter;
429  char *filters; ///< filtergraph associated to the -filter option
430  char *filters_script; ///< filtergraph script associated to the -filter_script option
431 
432  int64_t sws_flags;
437  char *apad;
438  OSTFinished finished; /* no more packets should be written for this stream */
439  int unavailable; /* true if the steram is unavailable (possibly temporarily) */
441  const char *attachment_filename;
444  char *disposition;
445 
447 
449 
450  /* stats */
451  // combined size of all the packets written
452  uint64_t data_size;
453  // number of packets send to the muxer
454  uint64_t packets_written;
455  // number of frames/samples sent to the encoder
456  uint64_t frames_encoded;
457  uint64_t samples_encoded;
458 } OutputStream;
459 
460 typedef struct OutputFile {
463  int ost_index; /* index of the first stream in output_streams */
464  int64_t recording_time; ///< desired length of the resulting file in microseconds == AV_TIME_BASE units
465  int64_t start_time; ///< start time in microseconds == AV_TIME_BASE units
466  uint64_t limit_filesize; /* filesize limit expressed in bytes */
467 
468  int shortest;
469 } OutputFile;
470 
471 extern InputStream **input_streams;
472 extern int nb_input_streams;
473 extern InputFile **input_files;
474 extern int nb_input_files;
475 
477 extern int nb_output_streams;
478 extern OutputFile **output_files;
479 extern int nb_output_files;
480 
481 extern FilterGraph **filtergraphs;
482 extern int nb_filtergraphs;
483 
484 extern char *vstats_filename;
485 extern char *sdp_filename;
486 
487 extern float audio_drift_threshold;
488 extern float dts_delta_threshold;
489 extern float dts_error_threshold;
490 
491 extern int audio_volume;
492 extern int audio_sync_method;
493 extern int video_sync_method;
494 extern float frame_drop_threshold;
495 extern int do_benchmark;
496 extern int do_benchmark_all;
497 extern int do_deinterlace;
498 extern int do_hex_dump;
499 extern int do_pkt_dump;
500 extern int copy_ts;
501 extern int start_at_zero;
502 extern int copy_tb;
503 extern int debug_ts;
504 extern int exit_on_error;
505 extern int print_stats;
506 extern int qp_hist;
507 extern int stdin_interaction;
508 extern int frame_bits_per_raw_sample;
509 extern AVIOContext *progress_avio;
510 extern float max_error_rate;
511 extern int vdpau_api_ver;
512 
513 extern const AVIOInterruptCB int_cb;
514 
515 extern const OptionDef options[];
516 extern const HWAccel hwaccels[];
517 
518 
519 void term_init(void);
520 void term_exit(void);
521 
522 void reset_options(OptionsContext *o, int is_input);
523 void show_usage(void);
524 
525 void opt_output_file(void *optctx, const char *filename);
526 
529 
531 
532 enum AVPixelFormat choose_pixel_fmt(AVStream *st, AVCodecContext *avctx, AVCodec *codec, enum AVPixelFormat target);
533 void choose_sample_fmt(AVStream *st, AVCodec *codec);
534 
539 
540 int ffmpeg_parse_options(int argc, char **argv);
541 
545 
546 #endif /* FFMPEG_H */
int64_t pts
current pts of the decoded frame (in AV_TIME_BASE units)
Definition: ffmpeg.h:268
SpecifierOpt * passlogfiles
Definition: ffmpeg.h:205
int nb_dump_attachment
Definition: ffmpeg.h:120
int got_output
Definition: ffmpeg.h:293
int nb_metadata
Definition: ffmpeg.h:158
int nb_streamid_map
Definition: ffmpeg.h:155
int frame_number
Definition: ffmpeg.h:385
Definition: ffmpeg.h:364
enum HWAccelID active_hwaccel_id
Definition: ffmpeg.h:319
int keep_pix_fmt
Definition: ffmpeg.h:446
const char * s
Definition: avisynth_c.h:631
Bytestream IO Context.
Definition: avio.h:111
float mux_preload
Definition: ffmpeg.h:144
int64_t recording_time
desired length of the resulting file in microseconds == AV_TIME_BASE units
Definition: ffmpeg.h:464
HWAccelID
Definition: ffmpeg.h:60
Buffered I/O operations.
uint8_t * name
Definition: ffmpeg.h:228
int nb_outputs
Definition: ffmpeg.h:244
AVDictionary * swr_opts
Definition: ffmpeg.h:434
int resample_channels
Definition: ffmpeg.h:288
enum AVPixelFormat choose_pixel_fmt(AVStream *st, AVCodecContext *avctx, AVCodec *codec, enum AVPixelFormat target)
Definition: ffmpeg_filter.c:41
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
int stream_copy
Definition: ffmpeg.h:440
AVRational frame_rate
Definition: ffmpeg.h:405
int64_t * forced_kf_pts
Definition: ffmpeg.h:413
char * filters
filtergraph associated to the -filter option
Definition: ffmpeg.h:429
int data_disable
Definition: ffmpeg.h:151
float mux_max_delay
Definition: ffmpeg.h:145
int exit_on_error
Definition: ffmpeg_opt.c:99
int accurate_seek
Definition: ffmpeg.h:352
OutputFile ** output_files
Definition: ffmpeg.c:144
int nb_forced_key_frames
Definition: ffmpeg.h:170
int * streamid_map
Definition: ffmpeg.h:154
Main libavfilter public API header.
int nb_stream_maps
Definition: ffmpeg.h:130
SpecifierOpt * copy_initial_nonkeyframes
Definition: ffmpeg.h:189
int ostream_idx
Definition: ffmpeg.h:87
int nb_chroma_intra_matrices
Definition: ffmpeg.h:182
AVRational framerate
Definition: ffmpeg.h:277
void choose_sample_fmt(AVStream *st, AVCodec *codec)
Definition: ffmpeg_filter.c:79
SpecifierOpt * reinit_filters
Definition: ffmpeg.h:197
SpecifierOpt * ts_scale
Definition: ffmpeg.h:117
AVCodecParserContext * parser
Definition: ffmpeg.h:448
AVFilterInOut * out_tmp
Definition: ffmpeg.h:231
int decoding_needed
Definition: ffmpeg.h:252
int nb_canvas_sizes
Definition: ffmpeg.h:202
FilterGraph * init_simple_filtergraph(InputStream *ist, OutputStream *ost)
int rotate_overridden
Definition: ffmpeg.h:408
const char * b
Definition: vf_curves.c:109
SpecifierOpt * discard
Definition: ffmpeg.h:211
int nb_frame_pix_fmts
Definition: ffmpeg.h:109
SpecifierOpt * sample_fmts
Definition: ffmpeg.h:165
SpecifierOpt * guess_layout_max
Definition: ffmpeg.h:207
int eagain
Definition: ffmpeg.h:340
AVBitStreamFilterContext * bitstream_filters
Definition: ffmpeg.h:395
external API header
forced_keyframes_const
Definition: ffmpeg.h:363
AVFrame * filter_frame
Definition: ffmpeg.h:259
int do_benchmark_all
Definition: ffmpeg_opt.c:92
FilterGraph ** filtergraphs
Definition: ffmpeg.c:147
int(* hwaccel_get_buffer)(AVCodecContext *s, AVFrame *frame, int flags)
Definition: ffmpeg.h:322
int64_t input_ts_offset
Definition: ffmpeg.h:342
int do_hex_dump
Definition: ffmpeg_opt.c:93
int nb_filter_scripts
Definition: ffmpeg.h:196
const char * name
Definition: ffmpeg.h:69
uint64_t packets_written
Definition: ffmpeg.h:454
AVCodec.
Definition: avcodec.h:3181
SpecifierOpt * filters
Definition: ffmpeg.h:193
int print_stats
Definition: ffmpeg_opt.c:100
float dts_error_threshold
Definition: ffmpeg_opt.c:84
int64_t start_time
start time in microseconds == AV_TIME_BASE units
Definition: ffmpeg.h:465
int index
Definition: ffmpeg.h:235
uint64_t data_size
Definition: ffmpeg.h:452
SpecifierOpt * qscale
Definition: ffmpeg.h:167
SpecifierOpt * frame_pix_fmts
Definition: ffmpeg.h:108
SpecifierOpt * chroma_intra_matrices
Definition: ffmpeg.h:181
struct FilterGraph * graph
Definition: ffmpeg.h:220
SpecifierOpt * intra_matrices
Definition: ffmpeg.h:177
int encoding_needed
Definition: ffmpeg.h:384
Format I/O context.
Definition: avformat.h:1272
void remove_avoptions(AVDictionary **a, AVDictionary *b)
Definition: ffmpeg.c:538
uint64_t samples_decoded
Definition: ffmpeg.h:334
struct InputStream * ist
Definition: ffmpeg.h:219
enum HWAccelID id
Definition: ffmpeg.h:71
uint64_t frames_decoded
Definition: ffmpeg.h:333
AVFilterGraph * graph
Definition: ffmpeg.h:238
Public dictionary API.
char * logfile_prefix
Definition: ffmpeg.h:424
int vdpau_init(AVCodecContext *s)
Definition: ffmpeg_vdpau.c:352
int user_set_discard
Definition: ffmpeg.h:251
int copy_initial_nonkeyframes
Definition: ffmpeg.h:442
uint8_t
int stdin_interaction
Definition: ffmpeg_opt.c:102
FILE * logfile
Definition: ffmpeg.h:425
AVDictionary * opts
Definition: ffmpeg.h:462
int last_droped
Definition: ffmpeg.h:401
Definition: eval.c:143
int do_benchmark
Definition: ffmpeg_opt.c:91
int audio_sync_method
Definition: ffmpeg_opt.c:87
int nb_max_frames
Definition: ffmpeg.h:160
int shortest
Definition: ffmpeg.h:468
int nb_output_streams
Definition: ffmpeg.c:143
static AVFrame * frame
int nb_streams
Definition: ffmpeg.h:348
int sync_file_index
Definition: ffmpeg.h:80
AVDictionary * resample_opts
Definition: ffmpeg.h:435
int seek_timestamp
Definition: ffmpeg.h:95
void reset_options(OptionsContext *o, int is_input)
AVFilterContext * filter
Definition: ffmpeg.h:225
SpecifierOpt * bitstream_filters
Definition: ffmpeg.h:161
int resample_sample_rate
Definition: ffmpeg.h:287
AVCodec * dec
Definition: ffmpeg.h:257
int top_field_first
Definition: ffmpeg.h:278
int file_index
Definition: ffmpeg.h:248
const OptionDef options[]
Definition: ffserver.c:3798
struct InputStream::sub2video sub2video
int resample_pix_fmt
Definition: ffmpeg.h:284
int resample_height
Definition: ffmpeg.h:282
int64_t filter_in_rescale_delta_last
Definition: ffmpeg.h:271
int wrap_correction_done
Definition: ffmpeg.h:269
int ist_in_filtergraph(FilterGraph *fg, InputStream *ist)
unsigned m
Definition: audioconvert.c:187
SpecifierOpt * disposition
Definition: ffmpeg.h:213
int64_t next_dts
Definition: ffmpeg.h:264
Callback for checking whether to abort blocking functions.
Definition: avio.h:50
libswresample public header
int nb_top_field_first
Definition: ffmpeg.h:184
int rate_emu
Definition: ffmpeg.h:351
int nb_discard
Definition: ffmpeg.h:212
enum AVPixelFormat hwaccel_pix_fmt
Definition: ffmpeg.h:324
int ffmpeg_parse_options(int argc, char **argv)
Definition: ffmpeg_opt.c:2811
AVFilterContext * filter
Definition: ffmpeg.h:218
void(* hwaccel_uninit)(AVCodecContext *s)
Definition: ffmpeg.h:321
int nb_filters
Definition: ffmpeg.h:194
int64_t start_time
Definition: ffmpeg.h:94
int64_t start
Definition: ffmpeg.h:261
uint64_t nb_packets
Definition: ffmpeg.h:331
int seek_timestamp
Definition: ffmpeg.h:346
int64_t last_mux_dts
Definition: ffmpeg.h:394
int video_sync_method
Definition: ffmpeg_opt.c:88
char * sdp_filename
Definition: ffmpeg_opt.c:80
SpecifierOpt * apad
Definition: ffmpeg.h:209
int last_nb0_frames[3]
Definition: ffmpeg.h:402
int64_t sws_flags
Definition: ffmpeg.h:432
int dr1
Definition: ffmpeg.h:305
int nb_hwaccel_devices
Definition: ffmpeg.h:124
AudioChannelMap * audio_channel_maps
Definition: ffmpeg.h:131
int nb_disposition
Definition: ffmpeg.h:214
SpecifierOpt * codec_tags
Definition: ffmpeg.h:163
SpecifierOpt * rc_overrides
Definition: ffmpeg.h:175
int(* init)(AVCodecContext *s)
Definition: ffmpeg.h:70
int video_disable
Definition: ffmpeg.h:148
int nb_input_files
Definition: ffmpeg.c:140
int force_fps
Definition: ffmpeg.h:406
int nb_codec_names
Definition: ffmpeg.h:99
Libavcodec external API header.
int qp_hist
Definition: ffmpeg_opt.c:101
StreamMap * stream_maps
Definition: ffmpeg.h:129
float frame_drop_threshold
Definition: ffmpeg_opt.c:89
uint64_t limit_filesize
Definition: ffmpeg.h:143
const char * format
Definition: ffmpeg.h:96
int nb_passlogfiles
Definition: ffmpeg.h:206
int nb_force_fps
Definition: ffmpeg.h:172
OutputFilter * filter
Definition: ffmpeg.h:427
AVRational frame_aspect_ratio
Definition: ffmpeg.h:410
int nb_sample_fmts
Definition: ffmpeg.h:166
int file_index
Definition: ffmpeg.h:78
int nb_audio_channel_maps
Definition: ffmpeg.h:132
SpecifierOpt * filter_scripts
Definition: ffmpeg.h:195
int nb_attachments
Definition: ffmpeg.h:137
char * linklabel
Definition: ffmpeg.h:82
int nb_ts_scale
Definition: ffmpeg.h:118
SpecifierOpt * audio_channels
Definition: ffmpeg.h:100
int saw_first_ts
Definition: ffmpeg.h:274
int nb_audio_sample_rate
Definition: ffmpeg.h:103
int metadata_chapters_manual
Definition: ffmpeg.h:135
struct OutputStream * ost
Definition: ffmpeg.h:226
int accurate_seek
Definition: ffmpeg.h:114
char * apad
Definition: ffmpeg.h:437
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
SpecifierOpt * pass
Definition: ffmpeg.h:203
SpecifierOpt * audio_sample_rate
Definition: ffmpeg.h:102
double forced_keyframes_expr_const_values[FKF_NB]
Definition: ffmpeg.h:418
void opt_output_file(void *optctx, const char *filename)
int dxva2_init(AVCodecContext *s)
Definition: ffmpeg_dxva2.c:598
SpecifierOpt * dump_attachment
Definition: ffmpeg.h:119
void assert_avoptions(AVDictionary *m)
Definition: ffmpeg.c:547
SpecifierOpt * canvas_sizes
Definition: ffmpeg.h:201
int nb_codec_tags
Definition: ffmpeg.h:164
int64_t last_ts
Definition: ffmpeg.h:344
SpecifierOpt * metadata_map
Definition: ffmpeg.h:185
int do_pkt_dump
Definition: ffmpeg_opt.c:94
int64_t max_frames
Definition: ffmpeg.h:398
int(* hwaccel_retrieve_data)(AVCodecContext *s, AVFrame *frame)
Definition: ffmpeg.h:323
int audio_channels_mapped
Definition: ffmpeg.h:422
SpecifierOpt * copy_prior_start
Definition: ffmpeg.h:191
SpecifierOpt * frame_aspect_ratios
Definition: ffmpeg.h:173
SpecifierOpt * frame_sizes
Definition: ffmpeg.h:106
int stream_idx
Definition: ffmpeg.h:86
int nb_hwaccels
Definition: ffmpeg.h:122
int start_at_zero
Definition: ffmpeg_opt.c:96
int ret
Definition: ffmpeg.h:294
int audio_volume
Definition: ffmpeg_opt.c:86
Stream structure.
Definition: avformat.h:842
A linked-list of the inputs/outputs of the filter chain.
Definition: avfilter.h:1351
InputFilter ** filters
Definition: ffmpeg.h:309
int fix_sub_duration
Definition: ffmpeg.h:291
int64_t recording_time
Definition: ffmpeg.h:347
SpecifierOpt * hwaccels
Definition: ffmpeg.h:121
Definition: ffmpeg.h:68
SpecifierOpt * frame_rates
Definition: ffmpeg.h:104
int nb_presets
Definition: ffmpeg.h:188
int ost_index
Definition: ffmpeg.h:463
struct InputStream * sync_ist
Definition: ffmpeg.h:388
double ts_scale
Definition: ffmpeg.h:273
int64_t recording_time
Definition: ffmpeg.h:141
int unavailable
Definition: ffmpeg.h:439
void term_exit(void)
Definition: ffmpeg.c:307
int chapters_input_file
Definition: ffmpeg.h:139
int64_t stop_time
Definition: ffmpeg.h:142
float max_error_rate
Definition: ffmpeg_opt.c:104
uint64_t frames_encoded
Definition: ffmpeg.h:456
int nb_copy_prior_start
Definition: ffmpeg.h:192
OutputStream ** output_streams
Definition: ffmpeg.c:142
int ist_index
Definition: ffmpeg.h:341
const char * graph_desc
Definition: ffmpeg.h:236
int guess_layout_max
Definition: ffmpeg.h:279
int64_t start_time
Definition: ffmpeg.h:345
main external API structure.
Definition: avcodec.h:1241
InputFile ** input_files
Definition: ffmpeg.c:139
int rate_emu
Definition: ffmpeg.h:113
int metadata_streams_manual
Definition: ffmpeg.h:134
const char * attachment_filename
Definition: ffmpeg.h:441
int configure_output_filter(FilterGraph *fg, OutputFilter *ofilter, AVFilterInOut *out)
a very simple circular buffer FIFO implementation
AVCodecContext * enc_ctx
Definition: ffmpeg.h:396
int audio_disable
Definition: ffmpeg.h:149
int64_t input_ts_offset
Definition: ffmpeg.h:112
int nb_filtergraphs
Definition: ffmpeg.c:148
AVFrame * decoded_frame
Definition: ffmpeg.h:258
int nb_bitstream_filters
Definition: ffmpeg.h:162
SpecifierOpt * top_field_first
Definition: ffmpeg.h:183
AVCodecContext * dec_ctx
Definition: ffmpeg.h:256
AVStream * st
Definition: ffmpeg.h:249
int * audio_channels_map
Definition: ffmpeg.h:421
int configure_filtergraph(FilterGraph *fg)
rational number numerator/denominator
Definition: rational.h:43
int file_index
Definition: ffmpeg.h:380
int metadata_global_manual
Definition: ffmpeg.h:133
int64_t sync_opts
Definition: ffmpeg.h:389
char * vstats_filename
Definition: ffmpeg_opt.c:79
SpecifierOpt * force_fps
Definition: ffmpeg.h:171
char * disposition
Definition: ffmpeg.h:444
int nb_fix_sub_duration
Definition: ffmpeg.h:200
int nb_inter_matrices
Definition: ffmpeg.h:180
int nb_streams_warn
Definition: ffmpeg.h:350
AVDictionary * decoder_opts
Definition: ffmpeg.h:276
int shortest
Definition: ffmpeg.h:146
int autorotate
Definition: ffmpeg.h:281
int showed_multi_packet_warning
Definition: ffmpeg.h:275
int frame_bits_per_raw_sample
Definition: ffmpeg_opt.c:103
int vdpau_api_ver
Definition: ffmpeg_vdpau.c:62
int64_t ts_offset
Definition: ffmpeg.h:343
int nb_qscale
Definition: ffmpeg.h:168
char * filters_script
filtergraph script associated to the -filter_script option
Definition: ffmpeg.h:430
SpecifierOpt * hwaccel_devices
Definition: ffmpeg.h:123
int nb_input_streams
Definition: ffmpeg.c:138
float audio_drift_threshold
Definition: ffmpeg_opt.c:82
AVFrame * filtered_frame
Definition: ffmpeg.h:399
int nb_autorotate
Definition: ffmpeg.h:126
int nb_audio_channels
Definition: ffmpeg.h:101
int source_index
Definition: ffmpeg.h:382
InputStream ** input_streams
Definition: ffmpeg.c:137
int copy_prior_start
Definition: ffmpeg.h:443
SpecifierOpt * metadata
Definition: ffmpeg.h:157
AVIOContext * progress_avio
Definition: ffmpeg.c:131
int nb_filters
Definition: ffmpeg.h:310
static int flags
Definition: cpu.c:47
AVExpr * forced_keyframes_pexpr
Definition: ffmpeg.h:417
int64_t dts
dts of the last packet read for this stream (in AV_TIME_BASE units)
Definition: ffmpeg.h:265
int forced_kf_count
Definition: ffmpeg.h:414
int resample_sample_fmt
Definition: ffmpeg.h:286
int nb_intra_matrices
Definition: ffmpeg.h:178
OSTFinished finished
Definition: ffmpeg.h:438
char * forced_keyframes
Definition: ffmpeg.h:416
int nb_frame_rates
Definition: ffmpeg.h:105
uint64_t data_size
Definition: ffmpeg.h:329
const AVIOInterruptCB int_cb
Definition: ffmpeg.c:424
int resample_width
Definition: ffmpeg.h:283
int vda_init(AVCodecContext *s)
Definition: ffmpeg_vda.c:103
int64_t next_pts
synthetic pts for the next decode frame (in AV_TIME_BASE units)
Definition: ffmpeg.h:267
Main libavformat public API header.
int reconfiguration
Definition: ffmpeg.h:239
struct FilterGraph * graph
Definition: ffmpeg.h:227
uint64_t limit_filesize
Definition: ffmpeg.h:466
SpecifierOpt * presets
Definition: ffmpeg.h:187
int reinit_filters
Definition: ffmpeg.h:312
int nb_frame_sizes
Definition: ffmpeg.h:107
rational numbers
OptionGroup * g
Definition: ffmpeg.h:91
SpecifierOpt * inter_matrices
Definition: ffmpeg.h:179
const char *const forced_keyframes_const_names[]
Definition: ffmpeg.c:112
AVStream * st
Definition: muxing.c:54
SpecifierOpt * forced_key_frames
Definition: ffmpeg.h:169
uint64_t samples_encoded
Definition: ffmpeg.h:457
const char ** attachments
Definition: ffmpeg.h:136
AVFrame * last_frame
Definition: ffmpeg.h:400
int copy_ts
Definition: ffmpeg_opt.c:95
AVFormatContext * ctx
Definition: ffmpeg.h:338
int stream_index
Definition: ffmpeg.h:79
AVCodec * enc
Definition: ffmpeg.h:397
AVSubtitle subtitle
Definition: ffmpeg.h:295
enum AVPixelFormat pix_fmt
Definition: ffmpeg.h:72
int eof_reached
Definition: ffmpeg.h:339
int nb_metadata_map
Definition: ffmpeg.h:186
int forced_kf_index
Definition: ffmpeg.h:415
int nb_rc_overrides
Definition: ffmpeg.h:176
int do_deinterlace
Definition: ffmpeg_opt.c:90
SpecifierOpt * fix_sub_duration
Definition: ffmpeg.h:199
Definition: ffmpeg.h:369
pixel format definitions
char * avfilter
Definition: ffmpeg.h:428
SpecifierOpt * autorotate
Definition: ffmpeg.h:125
uint8_t * name
Definition: ffmpeg.h:221
float dts_delta_threshold
Definition: ffmpeg_opt.c:83
void * hwaccel_ctx
Definition: ffmpeg.h:320
int guess_input_channel_layout(InputStream *ist)
Definition: ffmpeg.c:1824
int top_field_first
Definition: ffmpeg.h:407
OutputFilter ** outputs
Definition: ffmpeg.h:243
SpecifierOpt * max_frames
Definition: ffmpeg.h:159
int nb_copy_initial_nonkeyframes
Definition: ffmpeg.h:190
int disabled
Definition: ffmpeg.h:77
AVDictionary * bsf_args
Definition: ffmpeg.h:436
AVFormatContext * ctx
Definition: ffmpeg.h:461
int nb_output_files
Definition: ffmpeg.c:145
SpecifierOpt * codec_names
Definition: ffmpeg.h:98
void show_usage(void)
Definition: ffmpeg_opt.c:2761
int thread_queue_size
Definition: ffmpeg.h:115
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
An instance of a filter.
Definition: avfilter.h:633
char * hwaccel_device
Definition: ffmpeg.h:316
AVDictionary * encoder_opts
Definition: ffmpeg.h:433
InputFilter ** inputs
Definition: ffmpeg.h:241
enum AVPixelFormat hwaccel_retrieved_pix_fmt
Definition: ffmpeg.h:325
int sync_stream_index
Definition: ffmpeg.h:81
int copy_tb
Definition: ffmpeg_opt.c:97
int discard
Definition: ffmpeg.h:250
enum HWAccelID hwaccel_id
Definition: ffmpeg.h:315
int64_t first_pts
Definition: ffmpeg.h:392
int nb_inputs
Definition: ffmpeg.h:242
int index
Definition: ffmpeg.h:381
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
uint64_t resample_channel_layout
Definition: ffmpeg.h:289
OSTFinished
Definition: ffmpeg.h:374
int nb_reinit_filters
Definition: ffmpeg.h:198
int debug_ts
Definition: ffmpeg_opt.c:98
int nb_guess_layout_max
Definition: ffmpeg.h:208
void term_init(void)
Definition: ffmpeg.c:328
int nb_frame_aspect_ratios
Definition: ffmpeg.h:174
const HWAccel hwaccels[]
Definition: ffmpeg_opt.c:66
Definition: ffmpeg.h:368
simple arithmetic expression evaluator
int subtitle_disable
Definition: ffmpeg.h:150
struct InputStream::@25 prev_sub