~ubuntu-branches/ubuntu/maverick/x264/maverick-updates

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*****************************************************************************
 * input.h: x264 file input modules
 *****************************************************************************
 * Copyright (C) 2003-2009 x264 project
 *
 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
 *          Loren Merritt <lorenm@u.washington.edu>
 *          Steven Walters <kemuri9@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 *****************************************************************************/

#ifndef X264_INPUT_H
#define X264_INPUT_H

/* options that are used by only some demuxers */
typedef struct
{
    char *index;
    char *resolution; /* resolution string parsed by raw yuv input */
    int seek;
} cli_input_opt_t;

/* properties of the source given by the demuxer */
typedef struct
{
    int csp; /* X264_CSP_YV12 or X264_CSP_I420 */
    int fps_num;
    int fps_den;
    int height;
    int interlaced;
    int sar_width;
    int sar_height;
    int timebase_num;
    int timebase_den;
    int vfr;
    int width;
} video_info_t;

typedef struct
{
    int (*open_file)( char *psz_filename, hnd_t *p_handle, video_info_t *info, cli_input_opt_t *opt );
    int (*get_frame_total)( hnd_t handle );
    int (*picture_alloc)( x264_picture_t *pic, int i_csp, int i_width, int i_height );
    int (*read_frame)( x264_picture_t *p_pic, hnd_t handle, int i_frame );
    int (*release_frame)( x264_picture_t *pic, hnd_t handle );
    void (*picture_clean)( x264_picture_t *pic );
    int (*close_file)( hnd_t handle );
} cli_input_t;

extern const cli_input_t yuv_input;
extern const cli_input_t y4m_input;
extern const cli_input_t avs_input;
extern cli_input_t thread_input;
extern const cli_input_t lavf_input;
extern const cli_input_t ffms_input;

#endif