]> git.sesse.net Git - x264/blob - input/raw.c
arm: Implement x264_denoise_dct_neon
[x264] / input / raw.c
1 /*****************************************************************************
2  * raw.c: raw input
3  *****************************************************************************
4  * Copyright (C) 2003-2015 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 #include "input.h"
29 #define FAIL_IF_ERROR( cond, ... ) FAIL_IF_ERR( cond, "raw", __VA_ARGS__ )
30
31 typedef struct
32 {
33     FILE *fh;
34     int next_frame;
35     uint64_t plane_size[4];
36     uint64_t frame_size;
37     int bit_depth;
38 } raw_hnd_t;
39
40 static int open_file( char *psz_filename, hnd_t *p_handle, video_info_t *info, cli_input_opt_t *opt )
41 {
42     raw_hnd_t *h = calloc( 1, sizeof(raw_hnd_t) );
43     if( !h )
44         return -1;
45
46     if( !opt->resolution )
47     {
48         /* try to parse the file name */
49         for( char *p = psz_filename; *p; p++ )
50             if( *p >= '0' && *p <= '9' && sscanf( p, "%dx%d", &info->width, &info->height ) == 2 )
51                 break;
52     }
53     else
54         sscanf( opt->resolution, "%dx%d", &info->width, &info->height );
55     FAIL_IF_ERROR( !info->width || !info->height, "raw input requires a resolution.\n" )
56     if( opt->colorspace )
57     {
58         for( info->csp = X264_CSP_CLI_MAX-1; info->csp > X264_CSP_NONE; info->csp-- )
59         {
60             if( x264_cli_csps[info->csp].name && !strcasecmp( x264_cli_csps[info->csp].name, opt->colorspace ) )
61                 break;
62         }
63         FAIL_IF_ERROR( info->csp == X264_CSP_NONE, "unsupported colorspace `%s'\n", opt->colorspace );
64     }
65     else /* default */
66         info->csp = X264_CSP_I420;
67
68     h->bit_depth = opt->bit_depth;
69     FAIL_IF_ERROR( h->bit_depth < 8 || h->bit_depth > 16, "unsupported bit depth `%d'\n", h->bit_depth );
70     if( h->bit_depth > 8 )
71         info->csp |= X264_CSP_HIGH_DEPTH;
72
73     if( !strcmp( psz_filename, "-" ) )
74         h->fh = stdin;
75     else
76         h->fh = x264_fopen( psz_filename, "rb" );
77     if( h->fh == NULL )
78         return -1;
79
80     info->thread_safe = 1;
81     info->num_frames  = 0;
82     info->vfr         = 0;
83
84     const x264_cli_csp_t *csp = x264_cli_get_csp( info->csp );
85     for( int i = 0; i < csp->planes; i++ )
86     {
87         h->plane_size[i] = x264_cli_pic_plane_size( info->csp, info->width, info->height, i );
88         h->frame_size += h->plane_size[i];
89         /* x264_cli_pic_plane_size returns the size in bytes, we need the value in pixels from here on */
90         h->plane_size[i] /= x264_cli_csp_depth_factor( info->csp );
91     }
92
93     if( x264_is_regular_file( h->fh ) )
94     {
95         fseek( h->fh, 0, SEEK_END );
96         uint64_t size = ftell( h->fh );
97         fseek( h->fh, 0, SEEK_SET );
98         info->num_frames = size / h->frame_size;
99     }
100
101     *p_handle = h;
102     return 0;
103 }
104
105 static int read_frame_internal( cli_pic_t *pic, raw_hnd_t *h, int bit_depth_uc )
106 {
107     int error = 0;
108     int pixel_depth = x264_cli_csp_depth_factor( pic->img.csp );
109     for( int i = 0; i < pic->img.planes && !error; i++ )
110     {
111         error |= fread( pic->img.plane[i], pixel_depth, h->plane_size[i], h->fh ) != h->plane_size[i];
112         if( bit_depth_uc )
113         {
114             /* upconvert non 16bit high depth planes to 16bit using the same
115              * algorithm as used in the depth filter. */
116             uint16_t *plane = (uint16_t*)pic->img.plane[i];
117             uint64_t pixel_count = h->plane_size[i];
118             int lshift = 16 - h->bit_depth;
119             for( uint64_t j = 0; j < pixel_count; j++ )
120                 plane[j] = plane[j] << lshift;
121         }
122     }
123     return error;
124 }
125
126 static int read_frame( cli_pic_t *pic, hnd_t handle, int i_frame )
127 {
128     raw_hnd_t *h = handle;
129
130     if( i_frame > h->next_frame )
131     {
132         if( x264_is_regular_file( h->fh ) )
133             fseek( h->fh, i_frame * h->frame_size, SEEK_SET );
134         else
135             while( i_frame > h->next_frame )
136             {
137                 if( read_frame_internal( pic, h, 0 ) )
138                     return -1;
139                 h->next_frame++;
140             }
141     }
142
143     if( read_frame_internal( pic, h, h->bit_depth & 7 ) )
144         return -1;
145
146     h->next_frame = i_frame+1;
147     return 0;
148 }
149
150 static int close_file( hnd_t handle )
151 {
152     raw_hnd_t *h = handle;
153     if( !h || !h->fh )
154         return 0;
155     fclose( h->fh );
156     free( h );
157     return 0;
158 }
159
160 const cli_input_t raw_input = { open_file, x264_cli_pic_alloc, read_frame, NULL, x264_cli_pic_clean, close_file };