]> git.sesse.net Git - x264/blob - input/input.h
Disable progress for FFMS input with --no-progress
[x264] / input / input.h
1 /*****************************************************************************
2  * input.h: file input
3  *****************************************************************************
4  * Copyright (C) 2003-2011 x264 project
5  *
6  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
7  *          Loren Merritt <lorenm@u.washington.edu>
8  *          Steven Walters <kemuri9@gmail.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
23  *
24  * This program is also available under a commercial proprietary license.
25  * For more information, contact us at licensing@x264.com.
26  *****************************************************************************/
27
28 #ifndef X264_INPUT_H
29 #define X264_INPUT_H
30
31 #include "x264cli.h"
32
33 /* options that are used by only some demuxers */
34 typedef struct
35 {
36     char *index_file;
37     char *format;
38     char *resolution;
39     char *colorspace;
40     int bit_depth;
41     char *timebase;
42     int seek;
43     int progress;
44 } cli_input_opt_t;
45
46 /* properties of the source given by the demuxer */
47 typedef struct
48 {
49     int csp;         /* colorspace of the input */
50     uint32_t fps_num;
51     uint32_t fps_den;
52     int height;
53     int interlaced;
54     int num_frames;
55     uint32_t sar_width;
56     uint32_t sar_height;
57     int tff;
58     int thread_safe; /* demuxer is thread_input safe */
59     uint32_t timebase_num;
60     uint32_t timebase_den;
61     int vfr;
62     int width;
63 } video_info_t;
64
65 /* image data type used by x264cli */
66 typedef struct
67 {
68     int     csp;       /* colorspace */
69     int     width;     /* width of the picture */
70     int     height;    /* height of the picture */
71     int     planes;    /* number of planes */
72     uint8_t *plane[4]; /* pointers for each plane */
73     int     stride[4]; /* strides for each plane */
74 } cli_image_t;
75
76 typedef struct
77 {
78     cli_image_t img;
79     int64_t pts;       /* input pts */
80     int64_t duration;  /* frame duration - used for vfr */
81     void    *opaque;   /* opaque handle */
82 } cli_pic_t;
83
84 typedef struct
85 {
86     int (*open_file)( char *psz_filename, hnd_t *p_handle, video_info_t *info, cli_input_opt_t *opt );
87     int (*picture_alloc)( cli_pic_t *pic, int csp, int width, int height );
88     int (*read_frame)( cli_pic_t *pic, hnd_t handle, int i_frame );
89     int (*release_frame)( cli_pic_t *pic, hnd_t handle );
90     void (*picture_clean)( cli_pic_t *pic );
91     int (*close_file)( hnd_t handle );
92 } cli_input_t;
93
94 extern const cli_input_t raw_input;
95 extern const cli_input_t y4m_input;
96 extern const cli_input_t avs_input;
97 extern cli_input_t thread_input;
98 extern const cli_input_t lavf_input;
99 extern const cli_input_t ffms_input;
100 extern cli_input_t timecode_input;
101
102 extern cli_input_t input;
103
104 /* extended colorspace list that isn't supported by libx264 but by the cli */
105 #define X264_CSP_I422           X264_CSP_MAX     /* yuv 4:2:2 planar    */
106 #define X264_CSP_I444          (X264_CSP_MAX+1)  /* yuv 4:4:4 planar    */
107 #define X264_CSP_BGR           (X264_CSP_MAX+2)  /* packed bgr 24bits   */
108 #define X264_CSP_BGRA          (X264_CSP_MAX+3)  /* packed bgr 32bits   */
109 #define X264_CSP_RGB           (X264_CSP_MAX+4)  /* packed rgb 24bits   */
110 #define X264_CSP_CLI_MAX       (X264_CSP_MAX+5)  /* end of list         */
111 #define X264_CSP_OTHER          0x4000           /* non x264 colorspace */
112
113 typedef struct
114 {
115     const char *name;
116     int planes;
117     float width[4];
118     float height[4];
119     int mod_width;
120     int mod_height;
121 } x264_cli_csp_t;
122
123 extern const x264_cli_csp_t x264_cli_csps[];
124
125 int      x264_cli_csp_is_invalid( int csp );
126 int      x264_cli_csp_depth_factor( int csp );
127 int      x264_cli_pic_alloc( cli_pic_t *pic, int csp, int width, int height );
128 void     x264_cli_pic_clean( cli_pic_t *pic );
129 uint64_t x264_cli_pic_plane_size( int csp, int width, int height, int plane );
130 uint64_t x264_cli_pic_size( int csp, int width, int height );
131 const x264_cli_csp_t *x264_cli_get_csp( int csp );
132
133 #endif