]> git.sesse.net Git - ffmpeg/blob - ffmpeg.h
Merge commit '06c3cd3c0186803619bc6aad2d8f06c3e9015d15'
[ffmpeg] / ffmpeg.h
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"
47
48 #include "libswresample/swresample.h"
49
50 #define VSYNC_AUTO       -1
51 #define VSYNC_PASSTHROUGH 0
52 #define VSYNC_CFR         1
53 #define VSYNC_VFR         2
54 #define VSYNC_VSCFR       0xfe
55 #define VSYNC_DROP        0xff
56
57 #define MAX_STREAMS 1024    /* arbitrary sanity check value */
58
59 enum HWAccelID {
60     HWACCEL_NONE = 0,
61     HWACCEL_AUTO,
62     HWACCEL_VDPAU,
63 };
64
65 typedef struct HWAccel {
66     const char *name;
67     int (*init)(AVCodecContext *s);
68     enum HWAccelID id;
69     enum AVPixelFormat pix_fmt;
70 } HWAccel;
71
72 /* select an input stream for an output stream */
73 typedef struct StreamMap {
74     int disabled;           /* 1 is this mapping is disabled by a negative map */
75     int file_index;
76     int stream_index;
77     int sync_file_index;
78     int sync_stream_index;
79     char *linklabel;       /* name of an output link, for mapping lavfi outputs */
80 } StreamMap;
81
82 typedef struct {
83     int  file_idx,  stream_idx,  channel_idx; // input
84     int ofile_idx, ostream_idx;               // output
85 } AudioChannelMap;
86
87 typedef struct OptionsContext {
88     OptionGroup *g;
89
90     /* input/output options */
91     int64_t start_time;
92     const char *format;
93
94     SpecifierOpt *codec_names;
95     int        nb_codec_names;
96     SpecifierOpt *audio_channels;
97     int        nb_audio_channels;
98     SpecifierOpt *audio_sample_rate;
99     int        nb_audio_sample_rate;
100     SpecifierOpt *frame_rates;
101     int        nb_frame_rates;
102     SpecifierOpt *frame_sizes;
103     int        nb_frame_sizes;
104     SpecifierOpt *frame_pix_fmts;
105     int        nb_frame_pix_fmts;
106
107     /* input options */
108     int64_t input_ts_offset;
109     int rate_emu;
110     int accurate_seek;
111
112     SpecifierOpt *ts_scale;
113     int        nb_ts_scale;
114     SpecifierOpt *dump_attachment;
115     int        nb_dump_attachment;
116     SpecifierOpt *hwaccels;
117     int        nb_hwaccels;
118     SpecifierOpt *hwaccel_devices;
119     int        nb_hwaccel_devices;
120
121     /* output options */
122     StreamMap *stream_maps;
123     int     nb_stream_maps;
124     AudioChannelMap *audio_channel_maps; /* one info entry per -map_channel */
125     int           nb_audio_channel_maps; /* number of (valid) -map_channel settings */
126     int metadata_global_manual;
127     int metadata_streams_manual;
128     int metadata_chapters_manual;
129     const char **attachments;
130     int       nb_attachments;
131
132     int chapters_input_file;
133
134     int64_t recording_time;
135     int64_t stop_time;
136     uint64_t limit_filesize;
137     float mux_preload;
138     float mux_max_delay;
139     int shortest;
140
141     int video_disable;
142     int audio_disable;
143     int subtitle_disable;
144     int data_disable;
145
146     /* indexed by output file stream index */
147     int   *streamid_map;
148     int nb_streamid_map;
149
150     SpecifierOpt *metadata;
151     int        nb_metadata;
152     SpecifierOpt *max_frames;
153     int        nb_max_frames;
154     SpecifierOpt *bitstream_filters;
155     int        nb_bitstream_filters;
156     SpecifierOpt *codec_tags;
157     int        nb_codec_tags;
158     SpecifierOpt *sample_fmts;
159     int        nb_sample_fmts;
160     SpecifierOpt *qscale;
161     int        nb_qscale;
162     SpecifierOpt *forced_key_frames;
163     int        nb_forced_key_frames;
164     SpecifierOpt *force_fps;
165     int        nb_force_fps;
166     SpecifierOpt *frame_aspect_ratios;
167     int        nb_frame_aspect_ratios;
168     SpecifierOpt *rc_overrides;
169     int        nb_rc_overrides;
170     SpecifierOpt *intra_matrices;
171     int        nb_intra_matrices;
172     SpecifierOpt *inter_matrices;
173     int        nb_inter_matrices;
174     SpecifierOpt *chroma_intra_matrices;
175     int        nb_chroma_intra_matrices;
176     SpecifierOpt *top_field_first;
177     int        nb_top_field_first;
178     SpecifierOpt *metadata_map;
179     int        nb_metadata_map;
180     SpecifierOpt *presets;
181     int        nb_presets;
182     SpecifierOpt *copy_initial_nonkeyframes;
183     int        nb_copy_initial_nonkeyframes;
184     SpecifierOpt *copy_prior_start;
185     int        nb_copy_prior_start;
186     SpecifierOpt *filters;
187     int        nb_filters;
188     SpecifierOpt *filter_scripts;
189     int        nb_filter_scripts;
190     SpecifierOpt *reinit_filters;
191     int        nb_reinit_filters;
192     SpecifierOpt *fix_sub_duration;
193     int        nb_fix_sub_duration;
194     SpecifierOpt *canvas_sizes;
195     int        nb_canvas_sizes;
196     SpecifierOpt *pass;
197     int        nb_pass;
198     SpecifierOpt *passlogfiles;
199     int        nb_passlogfiles;
200     SpecifierOpt *guess_layout_max;
201     int        nb_guess_layout_max;
202     SpecifierOpt *apad;
203     int        nb_apad;
204 } OptionsContext;
205
206 typedef struct InputFilter {
207     AVFilterContext    *filter;
208     struct InputStream *ist;
209     struct FilterGraph *graph;
210     uint8_t            *name;
211 } InputFilter;
212
213 typedef struct OutputFilter {
214     AVFilterContext     *filter;
215     struct OutputStream *ost;
216     struct FilterGraph  *graph;
217     uint8_t             *name;
218
219     /* temporary storage until stream maps are processed */
220     AVFilterInOut       *out_tmp;
221 } OutputFilter;
222
223 typedef struct FilterGraph {
224     int            index;
225     const char    *graph_desc;
226
227     AVFilterGraph *graph;
228     int reconfiguration;
229
230     InputFilter   **inputs;
231     int          nb_inputs;
232     OutputFilter **outputs;
233     int         nb_outputs;
234 } FilterGraph;
235
236 typedef struct InputStream {
237     int file_index;
238     AVStream *st;
239     int discard;             /* true if stream data should be discarded */
240     int decoding_needed;     /* true if the packets must be decoded in 'raw_fifo' */
241     AVCodec *dec;
242     AVFrame *decoded_frame;
243     AVFrame *filter_frame; /* a ref of decoded_frame, to be sent to filters */
244
245     int64_t       start;     /* time when read started */
246     /* predicted dts of the next packet read for this stream or (when there are
247      * several frames in a packet) of the next frame in current packet (in AV_TIME_BASE units) */
248     int64_t       next_dts;
249     int64_t       dts;       ///< dts of the last packet read for this stream (in AV_TIME_BASE units)
250
251     int64_t       next_pts;  ///< synthetic pts for the next decode frame (in AV_TIME_BASE units)
252     int64_t       pts;       ///< current pts of the decoded frame  (in AV_TIME_BASE units)
253     int           wrap_correction_done;
254
255     int64_t filter_in_rescale_delta_last;
256
257     double ts_scale;
258     int saw_first_ts;
259     int showed_multi_packet_warning;
260     AVDictionary *opts;
261     AVRational framerate;               /* framerate forced with -r */
262     int top_field_first;
263     int guess_layout_max;
264
265     /* number of packets successfully read for this stream */
266     uint64_t nb_packets;
267
268     int resample_height;
269     int resample_width;
270     int resample_pix_fmt;
271
272     int      resample_sample_fmt;
273     int      resample_sample_rate;
274     int      resample_channels;
275     uint64_t resample_channel_layout;
276
277     int fix_sub_duration;
278     struct { /* previous decoded subtitle and related variables */
279         int got_output;
280         int ret;
281         AVSubtitle subtitle;
282     } prev_sub;
283
284     struct sub2video {
285         int64_t last_pts;
286         int64_t end_pts;
287         AVFrame *frame;
288         int w, h;
289     } sub2video;
290
291     int dr1;
292
293     /* decoded data from this stream goes into all those filters
294      * currently video and audio only */
295     InputFilter **filters;
296     int        nb_filters;
297
298     int reinit_filters;
299
300     /* hwaccel options */
301     enum HWAccelID hwaccel_id;
302     char  *hwaccel_device;
303
304     /* hwaccel context */
305     enum HWAccelID active_hwaccel_id;
306     void  *hwaccel_ctx;
307     void (*hwaccel_uninit)(AVCodecContext *s);
308     int  (*hwaccel_get_buffer)(AVCodecContext *s, AVFrame *frame, int flags);
309     int  (*hwaccel_retrieve_data)(AVCodecContext *s, AVFrame *frame);
310     enum AVPixelFormat hwaccel_pix_fmt;
311     enum AVPixelFormat hwaccel_retrieved_pix_fmt;
312 } InputStream;
313
314 typedef struct InputFile {
315     AVFormatContext *ctx;
316     int eof_reached;      /* true if eof reached */
317     int eagain;           /* true if last read attempt returned EAGAIN */
318     int ist_index;        /* index of first stream in input_streams */
319     int64_t input_ts_offset;
320     int64_t ts_offset;
321     int64_t last_ts;
322     int64_t start_time;   /* user-specified start time in AV_TIME_BASE or AV_NOPTS_VALUE */
323     int64_t recording_time;
324     int nb_streams;       /* number of stream that ffmpeg is aware of; may be different
325                              from ctx.nb_streams if new streams appear during av_read_frame() */
326     int nb_streams_warn;  /* number of streams that the user was warned of */
327     int rate_emu;
328     int accurate_seek;
329
330 #if HAVE_PTHREADS
331     pthread_t thread;           /* thread reading from this file */
332     int non_blocking;           /* reading packets from the thread should not block */
333     int finished;               /* the thread has exited */
334     int joined;                 /* the thread has been joined */
335     pthread_mutex_t fifo_lock;  /* lock for access to fifo */
336     pthread_cond_t  fifo_cond;  /* the main thread will signal on this cond after reading from fifo */
337     AVFifoBuffer *fifo;         /* demuxed packets are stored here; freed by the main thread */
338 #endif
339 } InputFile;
340
341 enum forced_keyframes_const {
342     FKF_N,
343     FKF_N_FORCED,
344     FKF_PREV_FORCED_N,
345     FKF_PREV_FORCED_T,
346     FKF_T,
347     FKF_NB
348 };
349
350 extern const char *const forced_keyframes_const_names[];
351
352 typedef enum {
353     ENCODER_FINISHED = 1,
354     MUXER_FINISHED = 2,
355 } OSTFinished ;
356
357 typedef struct OutputStream {
358     int file_index;          /* file index */
359     int index;               /* stream index in the output file */
360     int source_index;        /* InputStream index */
361     AVStream *st;            /* stream in the output file */
362     int encoding_needed;     /* true if encoding needed for this stream */
363     int frame_number;
364     /* input pts and corresponding output pts
365        for A/V sync */
366     struct InputStream *sync_ist; /* input stream to sync against */
367     int64_t sync_opts;       /* output frame counter, could be changed to some true timestamp */ // FIXME look at frame_number
368     /* pts of the first frame encoded for this stream, used for limiting
369      * recording time */
370     int64_t first_pts;
371     /* dts of the last packet sent to the muxer */
372     int64_t last_mux_dts;
373     AVBitStreamFilterContext *bitstream_filters;
374     AVCodec *enc;
375     int64_t max_frames;
376     AVFrame *filtered_frame;
377
378     /* video only */
379     AVRational frame_rate;
380     int force_fps;
381     int top_field_first;
382
383     AVRational frame_aspect_ratio;
384
385     /* forced key frames */
386     int64_t *forced_kf_pts;
387     int forced_kf_count;
388     int forced_kf_index;
389     char *forced_keyframes;
390     AVExpr *forced_keyframes_pexpr;
391     double forced_keyframes_expr_const_values[FKF_NB];
392
393     /* audio only */
394     int audio_channels_map[SWR_CH_MAX];  /* list of the channels id to pick from the source stream */
395     int audio_channels_mapped;           /* number of channels in audio_channels_map */
396
397     char *logfile_prefix;
398     FILE *logfile;
399
400     OutputFilter *filter;
401     char *avfilter;
402     char *filters;         ///< filtergraph associated to the -filter option
403     char *filters_script;  ///< filtergraph script associated to the -filter_script option
404
405     int64_t sws_flags;
406     AVDictionary *opts;
407     AVDictionary *swr_opts;
408     AVDictionary *resample_opts;
409     char *apad;
410     OSTFinished finished;        /* no more packets should be written for this stream */
411     int unavailable;                     /* true if the steram is unavailable (possibly temporarily) */
412     int stream_copy;
413     const char *attachment_filename;
414     int copy_initial_nonkeyframes;
415     int copy_prior_start;
416
417     int keep_pix_fmt;
418
419     AVCodecParserContext *parser;
420 } OutputStream;
421
422 typedef struct OutputFile {
423     AVFormatContext *ctx;
424     AVDictionary *opts;
425     int ost_index;       /* index of the first stream in output_streams */
426     int64_t recording_time;  ///< desired length of the resulting file in microseconds == AV_TIME_BASE units
427     int64_t start_time;      ///< start time in microseconds == AV_TIME_BASE units
428     uint64_t limit_filesize; /* filesize limit expressed in bytes */
429
430     int shortest;
431 } OutputFile;
432
433 extern InputStream **input_streams;
434 extern int        nb_input_streams;
435 extern InputFile   **input_files;
436 extern int        nb_input_files;
437
438 extern OutputStream **output_streams;
439 extern int         nb_output_streams;
440 extern OutputFile   **output_files;
441 extern int         nb_output_files;
442
443 extern FilterGraph **filtergraphs;
444 extern int        nb_filtergraphs;
445
446 extern char *vstats_filename;
447
448 extern float audio_drift_threshold;
449 extern float dts_delta_threshold;
450 extern float dts_error_threshold;
451
452 extern int audio_volume;
453 extern int audio_sync_method;
454 extern int video_sync_method;
455 extern int do_benchmark;
456 extern int do_benchmark_all;
457 extern int do_deinterlace;
458 extern int do_hex_dump;
459 extern int do_pkt_dump;
460 extern int copy_ts;
461 extern int copy_tb;
462 extern int debug_ts;
463 extern int exit_on_error;
464 extern int print_stats;
465 extern int qp_hist;
466 extern int stdin_interaction;
467 extern int frame_bits_per_raw_sample;
468 extern AVIOContext *progress_avio;
469 extern float max_error_rate;
470
471 extern const AVIOInterruptCB int_cb;
472
473 extern const OptionDef options[];
474 extern const HWAccel hwaccels[];
475
476
477 void term_init(void);
478 void term_exit(void);
479
480 void reset_options(OptionsContext *o, int is_input);
481 void show_usage(void);
482
483 void opt_output_file(void *optctx, const char *filename);
484
485 void assert_avoptions(AVDictionary *m);
486
487 int guess_input_channel_layout(InputStream *ist);
488
489 enum AVPixelFormat choose_pixel_fmt(AVStream *st, AVCodec *codec, enum AVPixelFormat target);
490 void choose_sample_fmt(AVStream *st, AVCodec *codec);
491
492 int configure_filtergraph(FilterGraph *fg);
493 int configure_output_filter(FilterGraph *fg, OutputFilter *ofilter, AVFilterInOut *out);
494 int ist_in_filtergraph(FilterGraph *fg, InputStream *ist);
495 FilterGraph *init_simple_filtergraph(InputStream *ist, OutputStream *ost);
496
497 int ffmpeg_parse_options(int argc, char **argv);
498
499 int vdpau_init(AVCodecContext *s);
500
501 #endif /* FFMPEG_H */