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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
|
/* cropscale.c
Copyright (c) 2003-2014 HandBrake Team
This file is part of the HandBrake source code
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License v2.
For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
*/
#include "hb.h"
#include "hbffmpeg.h"
#include "common.h"
#include "opencl.h"
struct hb_filter_private_s
{
hb_job_t *job;
int width_in;
int height_in;
int pix_fmt;
int pix_fmt_out;
int width_out;
int height_out;
int crop[4];
/* OpenCL/DXVA2 */
int use_dxva;
int use_decomb;
int use_detelecine;
hb_oclscale_t *os; //ocl scaler handler
struct SwsContext * context;
};
static int hb_crop_scale_init( hb_filter_object_t * filter,
hb_filter_init_t * init );
static int hb_crop_scale_work( hb_filter_object_t * filter,
hb_buffer_t ** buf_in,
hb_buffer_t ** buf_out );
static int hb_crop_scale_info( hb_filter_object_t * filter,
hb_filter_info_t * info );
static void hb_crop_scale_close( hb_filter_object_t * filter );
hb_filter_object_t hb_filter_crop_scale =
{
.id = HB_FILTER_CROP_SCALE,
.enforce_order = 1,
.name = "Crop and Scale",
.settings = NULL,
.init = hb_crop_scale_init,
.work = hb_crop_scale_work,
.close = hb_crop_scale_close,
.info = hb_crop_scale_info,
};
static int hb_crop_scale_init( hb_filter_object_t * filter,
hb_filter_init_t * init )
{
filter->private_data = calloc( 1, sizeof(struct hb_filter_private_s) );
hb_filter_private_t * pv = filter->private_data;
// TODO: add pix format option to settings
pv->job = init->job;
pv->pix_fmt_out = init->pix_fmt;
pv->width_in = init->width;
pv->height_in = init->height;
pv->width_out = init->width - (init->crop[2] + init->crop[3]);
pv->height_out = init->height - (init->crop[0] + init->crop[1]);
/* OpenCL/DXVA2 */
pv->use_dxva = init->use_dxva;
pv->use_decomb = init->job->use_decomb;
pv->use_detelecine = init->job->use_detelecine;
if (pv->job->use_opencl && pv->job->title->opencl_support)
{
pv->os = ( hb_oclscale_t * )malloc( sizeof( hb_oclscale_t ) );
memset( pv->os, 0, sizeof( hb_oclscale_t ) );
}
memcpy( pv->crop, init->crop, sizeof( int[4] ) );
if( filter->settings )
{
sscanf( filter->settings, "%d:%d:%d:%d:%d:%d",
&pv->width_out, &pv->height_out,
&pv->crop[0], &pv->crop[1], &pv->crop[2], &pv->crop[3] );
}
// Set init values so the next stage in the pipline
// knows what it will be getting
init->pix_fmt = pv->pix_fmt;
init->width = pv->width_out;
init->height = pv->height_out;
memcpy( init->crop, pv->crop, sizeof( int[4] ) );
return 0;
}
static int hb_crop_scale_info( hb_filter_object_t * filter,
hb_filter_info_t * info )
{
hb_filter_private_t * pv = filter->private_data;
if( !pv )
return 0;
// Set init values so the next stage in the pipline
// knows what it will be getting
memset( info, 0, sizeof( hb_filter_info_t ) );
info->out.pix_fmt = pv->pix_fmt;
info->out.width = pv->width_out;
info->out.height = pv->height_out;
memcpy( info->out.crop, pv->crop, sizeof( int[4] ) );
int cropped_width = pv->width_in - ( pv->crop[2] + pv->crop[3] );
int cropped_height = pv->height_in - ( pv->crop[0] + pv->crop[1] );
sprintf( info->human_readable_desc,
"source: %d * %d, crop (%d/%d/%d/%d): %d * %d, scale: %d * %d",
pv->width_in, pv->height_in,
pv->crop[0], pv->crop[1], pv->crop[2], pv->crop[3],
cropped_width, cropped_height, pv->width_out, pv->height_out );
return 0;
}
static void hb_crop_scale_close( hb_filter_object_t * filter )
{
hb_filter_private_t * pv = filter->private_data;
if ( !pv )
{
return;
}
/* OpenCL */
if (pv->job->use_opencl && pv->job->title->opencl_support && pv->os)
{
if (hb_ocl != NULL)
{
HB_OCL_BUF_FREE(hb_ocl, pv->os->bicubic_x_weights);
HB_OCL_BUF_FREE(hb_ocl, pv->os->bicubic_y_weights);
}
free(pv->os);
}
if( pv->context )
{
sws_freeContext( pv->context );
}
free( pv );
filter->private_data = NULL;
}
/* OpenCL */
static hb_buffer_t* crop_scale( hb_filter_private_t * pv, hb_buffer_t * in )
{
AVPicture pic_in;
AVPicture pic_out;
AVPicture pic_crop;
hb_buffer_t * out;
out = hb_video_buffer_init( pv->width_out, pv->height_out );
hb_avpicture_fill( &pic_in, in );
hb_avpicture_fill( &pic_out, out );
// Crop; this alters the pointer to the data to point to the
// correct place for cropped frame
av_picture_crop( &pic_crop, &pic_in, in->f.fmt,
pv->crop[0], pv->crop[2] );
// Use bicubic OpenCL scaling when selected and when downsampling < 4:1;
if ((pv->job->use_opencl && pv->job->title->opencl_support) &&
(pv->width_out * 4 > pv->width_in) &&
(in->cl.buffer != NULL) && (out->cl.buffer != NULL))
{
/* OpenCL */
hb_ocl_scale(in, out, pv->crop, pv->os);
}
else
{
if (pv->context == NULL ||
pv->width_in != in->f.width ||
pv->height_in != in->f.height ||
pv->pix_fmt != in->f.fmt)
{
// Something changed, need a new scaling context.
if (pv->context != NULL)
{
sws_freeContext(pv->context);
}
pv->context = hb_sws_get_context(in->f.width - (pv->crop[2] + pv->crop[3]),
in->f.height - (pv->crop[0] + pv->crop[1]),
in->f.fmt, out->f.width, out->f.height,
out->f.fmt, SWS_LANCZOS|SWS_ACCURATE_RND);
pv->width_in = in->f.width;
pv->height_in = in->f.height;
pv->pix_fmt = in->f.fmt;
}
// Scale pic_crop into pic_render according to the
// context set up above
sws_scale(pv->context,
(const uint8_t* const*)pic_crop.data, pic_crop.linesize,
0, in->f.height - (pv->crop[0] + pv->crop[1]),
pic_out.data, pic_out.linesize);
}
out->s = in->s;
hb_buffer_move_subs( out, in );
return out;
}
static int hb_crop_scale_work( hb_filter_object_t * filter,
hb_buffer_t ** buf_in,
hb_buffer_t ** buf_out )
{
hb_filter_private_t * pv = filter->private_data;
hb_buffer_t * in = *buf_in;
if ( in->size <= 0 )
{
*buf_out = in;
*buf_in = NULL;
return HB_FILTER_DONE;
}
if ( !pv )
{
*buf_out = in;
*buf_in = NULL;
return HB_FILTER_OK;
}
// If width or height were not set, set them now based on the
// input width & height
if ( pv->width_out <= 0 || pv->height_out <= 0 )
{
pv->width_out = in->f.width - (pv->crop[2] + pv->crop[3]);
pv->height_out = in->f.height - (pv->crop[0] + pv->crop[1]);
}
/* OpenCL/DXVA2 */
if ((!pv->use_decomb && !pv->use_detelecine &&
!pv->crop[0] && !pv->crop[1] && !pv->crop[2] && !pv->crop[3] &&
in->f.fmt == pv->pix_fmt_out && in->f.width == pv->width_out &&
in->f.height == pv->height_out) || (pv->use_dxva &&
in->f.width == pv->width_out &&
in->f.height == pv->height_out))
{
*buf_out = in;
*buf_in = NULL;
return HB_FILTER_OK;
}
*buf_out = crop_scale( pv, in );
return HB_FILTER_OK;
}
|