| 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 |
#ifdef HAVE_CONFIG_H |
|---|
| 34 |
# include "config.h" |
|---|
| 35 |
#endif |
|---|
| 36 |
|
|---|
| 37 |
#include <ctype.h> |
|---|
| 38 |
#include <errno.h> |
|---|
| 39 |
|
|---|
| 40 |
#include <vlc_common.h> |
|---|
| 41 |
#include <vlc_codec.h> |
|---|
| 42 |
#include <vlc_filter.h> |
|---|
| 43 |
#include <vlc_es.h> |
|---|
| 44 |
#include <vlc_image.h> |
|---|
| 45 |
#include <vlc_stream.h> |
|---|
| 46 |
#include <vlc_charset.h> |
|---|
| 47 |
#include <libvlc.h> |
|---|
| 48 |
|
|---|
| 49 |
static picture_t *ImageRead( image_handler_t *, block_t *, |
|---|
| 50 |
video_format_t *, video_format_t * ); |
|---|
| 51 |
static picture_t *ImageReadUrl( image_handler_t *, const char *, |
|---|
| 52 |
video_format_t *, video_format_t * ); |
|---|
| 53 |
static block_t *ImageWrite( image_handler_t *, picture_t *, |
|---|
| 54 |
video_format_t *, video_format_t * ); |
|---|
| 55 |
static int ImageWriteUrl( image_handler_t *, picture_t *, |
|---|
| 56 |
video_format_t *, video_format_t *, const char * ); |
|---|
| 57 |
|
|---|
| 58 |
static picture_t *ImageConvert( image_handler_t *, picture_t *, |
|---|
| 59 |
video_format_t *, video_format_t * ); |
|---|
| 60 |
static picture_t *ImageFilter( image_handler_t *, picture_t *, |
|---|
| 61 |
video_format_t *, const char *psz_module ); |
|---|
| 62 |
|
|---|
| 63 |
static decoder_t *CreateDecoder( vlc_object_t *, video_format_t * ); |
|---|
| 64 |
static void DeleteDecoder( decoder_t * ); |
|---|
| 65 |
static encoder_t *CreateEncoder( vlc_object_t *, video_format_t *, |
|---|
| 66 |
video_format_t * ); |
|---|
| 67 |
static void DeleteEncoder( encoder_t * ); |
|---|
| 68 |
static filter_t *CreateFilter( vlc_object_t *, es_format_t *, |
|---|
| 69 |
video_format_t *, const char * ); |
|---|
| 70 |
static void DeleteFilter( filter_t * ); |
|---|
| 71 |
|
|---|
| 72 |
static vlc_fourcc_t Ext2Fourcc( const char * ); |
|---|
| 73 |
|
|---|
| 74 |
|
|---|
| 75 |
|
|---|
| 76 |
|
|---|
| 77 |
|
|---|
| 78 |
|
|---|
| 79 |
image_handler_t *__image_HandlerCreate( vlc_object_t *p_this ) |
|---|
| 80 |
{ |
|---|
| 81 |
image_handler_t *p_image = malloc( sizeof(image_handler_t) ); |
|---|
| 82 |
|
|---|
| 83 |
memset( p_image, 0, sizeof(image_handler_t) ); |
|---|
| 84 |
p_image->p_parent = p_this; |
|---|
| 85 |
|
|---|
| 86 |
p_image->pf_read = ImageRead; |
|---|
| 87 |
p_image->pf_read_url = ImageReadUrl; |
|---|
| 88 |
p_image->pf_write = ImageWrite; |
|---|
| 89 |
p_image->pf_write_url = ImageWriteUrl; |
|---|
| 90 |
p_image->pf_convert = ImageConvert; |
|---|
| 91 |
p_image->pf_filter = ImageFilter; |
|---|
| 92 |
|
|---|
| 93 |
return p_image; |
|---|
| 94 |
} |
|---|
| 95 |
|
|---|
| 96 |
|
|---|
| 97 |
|
|---|
| 98 |
|
|---|
| 99 |
|
|---|
| 100 |
void image_HandlerDelete( image_handler_t *p_image ) |
|---|
| 101 |
{ |
|---|
| 102 |
if( !p_image ) return; |
|---|
| 103 |
|
|---|
| 104 |
if( p_image->p_dec ) DeleteDecoder( p_image->p_dec ); |
|---|
| 105 |
if( p_image->p_enc ) DeleteEncoder( p_image->p_enc ); |
|---|
| 106 |
if( p_image->p_filter ) DeleteFilter( p_image->p_filter ); |
|---|
| 107 |
|
|---|
| 108 |
free( p_image ); |
|---|
| 109 |
p_image = NULL; |
|---|
| 110 |
} |
|---|
| 111 |
|
|---|
| 112 |
|
|---|
| 113 |
|
|---|
| 114 |
|
|---|
| 115 |
|
|---|
| 116 |
|
|---|
| 117 |
static picture_t *ImageRead( image_handler_t *p_image, block_t *p_block, |
|---|
| 118 |
video_format_t *p_fmt_in, |
|---|
| 119 |
video_format_t *p_fmt_out ) |
|---|
| 120 |
{ |
|---|
| 121 |
picture_t *p_pic = NULL, *p_tmp; |
|---|
| 122 |
|
|---|
| 123 |
|
|---|
| 124 |
if( p_image->p_dec && |
|---|
| 125 |
p_image->p_dec->fmt_in.i_codec != p_fmt_in->i_chroma ) |
|---|
| 126 |
{ |
|---|
| 127 |
DeleteDecoder( p_image->p_dec ); |
|---|
| 128 |
p_image->p_dec = 0; |
|---|
| 129 |
} |
|---|
| 130 |
|
|---|
| 131 |
|
|---|
| 132 |
if( !p_image->p_dec ) |
|---|
| 133 |
{ |
|---|
| 134 |
p_image->p_dec = CreateDecoder( p_image->p_parent, p_fmt_in ); |
|---|
| 135 |
if( !p_image->p_dec ) return NULL; |
|---|
| 136 |
} |
|---|
| 137 |
|
|---|
| 138 |
p_block->i_pts = p_block->i_dts = mdate(); |
|---|
| 139 |
while( (p_tmp = p_image->p_dec->pf_decode_video( p_image->p_dec, &p_block )) |
|---|
| 140 |
!= NULL ) |
|---|
| 141 |
{ |
|---|
| 142 |
if( p_pic != NULL ) |
|---|
| 143 |
picture_Release( p_pic ); |
|---|
| 144 |
p_pic = p_tmp; |
|---|
| 145 |
} |
|---|
| 146 |
|
|---|
| 147 |
if( p_pic == NULL ) |
|---|
| 148 |
{ |
|---|
| 149 |
msg_Warn( p_image->p_parent, "no image decoded" ); |
|---|
| 150 |
return 0; |
|---|
| 151 |
} |
|---|
| 152 |
|
|---|
| 153 |
if( !p_fmt_out->i_chroma ) |
|---|
| 154 |
p_fmt_out->i_chroma = p_image->p_dec->fmt_out.video.i_chroma; |
|---|
| 155 |
if( !p_fmt_out->i_width && p_fmt_out->i_height ) |
|---|
| 156 |
p_fmt_out->i_width = p_fmt_out->i_height |
|---|
| 157 |
* p_image->p_dec->fmt_out.video.i_aspect |
|---|
| 158 |
/ VOUT_ASPECT_FACTOR; |
|---|
| 159 |
if( !p_fmt_out->i_height && p_fmt_out->i_width ) |
|---|
| 160 |
p_fmt_out->i_height = p_fmt_out->i_width * VOUT_ASPECT_FACTOR |
|---|
| 161 |
/ p_image->p_dec->fmt_out.video.i_aspect; |
|---|
| 162 |
if( !p_fmt_out->i_width ) |
|---|
| 163 |
p_fmt_out->i_width = p_image->p_dec->fmt_out.video.i_width; |
|---|
| 164 |
if( !p_fmt_out->i_height ) |
|---|
| 165 |
p_fmt_out->i_height = p_image->p_dec->fmt_out.video.i_height; |
|---|
| 166 |
|
|---|
| 167 |
|
|---|
| 168 |
if( p_image->p_dec->fmt_out.video.i_chroma != p_fmt_out->i_chroma || |
|---|
| 169 |
p_image->p_dec->fmt_out.video.i_width != p_fmt_out->i_width || |
|---|
| 170 |
p_image->p_dec->fmt_out.video.i_height != p_fmt_out->i_height ) |
|---|
| 171 |
{ |
|---|
| 172 |
if( p_image->p_filter ) |
|---|
| 173 |
if( p_image->p_filter->fmt_in.video.i_chroma != |
|---|
| 174 |
p_image->p_dec->fmt_out.video.i_chroma || |
|---|
| 175 |
p_image->p_filter->fmt_out.video.i_chroma != p_fmt_out->i_chroma ) |
|---|
| 176 |
{ |
|---|
| 177 |
|
|---|
| 178 |
DeleteFilter( p_image->p_filter ); |
|---|
| 179 |
p_image->p_filter = 0; |
|---|
| 180 |
} |
|---|
| 181 |
|
|---|
| 182 |
|
|---|
| 183 |
if( !p_image->p_filter ) |
|---|
| 184 |
{ |
|---|
| 185 |
p_image->p_filter = |
|---|
| 186 |
CreateFilter( p_image->p_parent, &p_image->p_dec->fmt_out, |
|---|
| 187 |
p_fmt_out, NULL ); |
|---|
| 188 |
|
|---|
| 189 |
if( !p_image->p_filter ) |
|---|
| 190 |
{ |
|---|
| 191 |
picture_Release( p_pic ); |
|---|
| 192 |
return NULL; |
|---|
| 193 |
} |
|---|
| 194 |
} |
|---|
| 195 |
else |
|---|
| 196 |
{ |
|---|
| 197 |
|
|---|
| 198 |
p_image->p_filter->fmt_in = p_image->p_dec->fmt_out; |
|---|
| 199 |
p_image->p_filter->fmt_out = p_image->p_dec->fmt_out; |
|---|
| 200 |
p_image->p_filter->fmt_out.i_codec = p_fmt_out->i_chroma; |
|---|
| 201 |
p_image->p_filter->fmt_out.video = *p_fmt_out; |
|---|
| 202 |
} |
|---|
| 203 |
|
|---|
| 204 |
p_pic = p_image->p_filter->pf_video_filter( p_image->p_filter, p_pic ); |
|---|
| 205 |
*p_fmt_out = p_image->p_filter->fmt_out.video; |
|---|
| 206 |
} |
|---|
| 207 |
else *p_fmt_out = p_image->p_dec->fmt_out.video; |
|---|
| 208 |
|
|---|
| 209 |
return p_pic; |
|---|
| 210 |
} |
|---|
| 211 |
|
|---|
| 212 |
static picture_t *ImageReadUrl( image_handler_t *p_image, const char *psz_url, |
|---|
| 213 |
video_format_t *p_fmt_in, |
|---|
| 214 |
video_format_t *p_fmt_out ) |
|---|
| 215 |
{ |
|---|
| 216 |
block_t *p_block; |
|---|
| 217 |
picture_t *p_pic; |
|---|
| 218 |
stream_t *p_stream = NULL; |
|---|
| 219 |
int i_size; |
|---|
| 220 |
|
|---|
| 221 |
p_stream = stream_UrlNew( p_image->p_parent, psz_url ); |
|---|
| 222 |
|
|---|
| 223 |
if( !p_stream ) |
|---|
| 224 |
{ |
|---|
| 225 |
msg_Dbg( p_image->p_parent, "could not open %s for reading", |
|---|
| 226 |
psz_url ); |
|---|
| 227 |
return NULL; |
|---|
| 228 |
} |
|---|
| 229 |
|
|---|
| 230 |
i_size = stream_Size( p_stream ); |
|---|
| 231 |
|
|---|
| 232 |
p_block = block_New( p_image->p_parent, i_size ); |
|---|
| 233 |
|
|---|
| 234 |
stream_Read( p_stream, p_block->p_buffer, i_size ); |
|---|
| 235 |
stream_Delete( p_stream ); |
|---|
| 236 |
|
|---|
| 237 |
if( !p_fmt_in->i_chroma ) |
|---|
| 238 |
{ |
|---|
| 239 |
|
|---|
| 240 |
p_fmt_in->i_chroma = Ext2Fourcc( psz_url ); |
|---|
| 241 |
} |
|---|
| 242 |
|
|---|
| 243 |
p_pic = ImageRead( p_image, p_block, p_fmt_in, p_fmt_out ); |
|---|
| 244 |
|
|---|
| 245 |
return p_pic; |
|---|
| 246 |
} |
|---|
| 247 |
|
|---|
| 248 |
|
|---|
| 249 |
|
|---|
| 250 |
|
|---|
| 251 |
|
|---|
| 252 |
|
|---|
| 253 |
static block_t *ImageWrite( image_handler_t *p_image, picture_t *p_pic, |
|---|
| 254 |
video_format_t *p_fmt_in, |
|---|
| 255 |
video_format_t *p_fmt_out ) |
|---|
| 256 |
{ |
|---|
| 257 |
block_t *p_block; |
|---|
| 258 |
|
|---|
| 259 |
|
|---|
| 260 |
if( p_image->p_enc && |
|---|
| 261 |
( p_image->p_enc->fmt_out.i_codec != p_fmt_out->i_chroma || |
|---|
| 262 |
p_image->p_enc->fmt_out.video.i_width != p_fmt_out->i_width || |
|---|
| 263 |
p_image->p_enc->fmt_out.video.i_height != p_fmt_out->i_height ) ) |
|---|
| 264 |
{ |
|---|
| 265 |
DeleteEncoder( p_image->p_enc ); |
|---|
| 266 |
p_image->p_enc = 0; |
|---|
| 267 |
} |
|---|
| 268 |
|
|---|
| 269 |
|
|---|
| 270 |
if( !p_image->p_enc ) |
|---|
| 271 |
{ |
|---|
| 272 |
p_image->p_enc = CreateEncoder( p_image->p_parent, |
|---|
| 273 |
p_fmt_in, p_fmt_out ); |
|---|
| 274 |
if( !p_image->p_enc ) return NULL; |
|---|
| 275 |
} |
|---|
| 276 |
|
|---|
| 277 |
|
|---|
| 278 |
if( p_image->p_enc->fmt_in.video.i_chroma != p_fmt_in->i_chroma || |
|---|
| 279 |
p_image->p_enc->fmt_in.video.i_width != p_fmt_in->i_width || |
|---|
| 280 |
p_image->p_enc->fmt_in.video.i_height != p_fmt_in->i_height ) |
|---|
| 281 |
{ |
|---|
| 282 |
picture_t *p_tmp_pic; |
|---|
| 283 |
|
|---|
| 284 |
if( p_image->p_filter ) |
|---|
| 285 |
if( p_image->p_filter->fmt_in.video.i_chroma != p_fmt_in->i_chroma || |
|---|
| 286 |
p_image->p_filter->fmt_out.video.i_chroma != |
|---|
| 287 |
p_image->p_enc->fmt_in.video.i_chroma ) |
|---|
| 288 |
{ |
|---|
| 289 |
|
|---|
| 290 |
DeleteFilter( p_image->p_filter ); |
|---|
| 291 |
p_image->p_filter = 0; |
|---|
| 292 |
} |
|---|
| 293 |
|
|---|
| 294 |
|
|---|
| 295 |
if( !p_image->p_filter ) |
|---|
| 296 |
{ |
|---|
| 297 |
es_format_t fmt_in; |
|---|
| 298 |
es_format_Init( &fmt_in, VIDEO_ES, p_fmt_in->i_chroma ); |
|---|
| 299 |
fmt_in.video = *p_fmt_in; |
|---|
| 300 |
|
|---|
| 301 |
p_image->p_filter = |
|---|
| 302 |
CreateFilter( p_image->p_parent, &fmt_in, |
|---|
| 303 |
&p_image->p_enc->fmt_in.video, NULL ); |
|---|
| 304 |
|
|---|
| 305 |
if( !p_image->p_filter ) |
|---|
| 306 |
{ |
|---|
| 307 |
return NULL; |
|---|
| 308 |
} |
|---|
| 309 |
} |
|---|
| 310 |
else |
|---|
| 311 |
{ |
|---|
| 312 |
|
|---|
| 313 |
p_image->p_filter->fmt_in.i_codec = p_fmt_in->i_chroma; |
|---|
| 314 |
p_image->p_filter->fmt_out.video = *p_fmt_in; |
|---|
| 315 |
p_image->p_filter->fmt_out.i_codec =p_image->p_enc->fmt_in.i_codec; |
|---|
| 316 |
p_image->p_filter->fmt_out.video = p_image->p_enc->fmt_in.video; |
|---|
| 317 |
} |
|---|
| 318 |
|
|---|
| 319 |
picture_Hold( p_pic ); |
|---|
| 320 |
|
|---|
| 321 |
p_tmp_pic = |
|---|
| 322 |
p_image->p_filter->pf_video_filter( p_image->p_filter, p_pic ); |
|---|
| 323 |
|
|---|
| 324 |
p_block = p_image->p_enc->pf_encode_video( p_image->p_enc, p_tmp_pic ); |
|---|
| 325 |
|
|---|
| 326 |
p_image->p_filter->pf_vout_buffer_del( p_image->p_filter, p_tmp_pic ); |
|---|
| 327 |
} |
|---|
| 328 |
else |
|---|
| 329 |
{ |
|---|
| 330 |
p_block = p_image->p_enc->pf_encode_video( p_image->p_enc, p_pic ); |
|---|
| 331 |
} |
|---|
| 332 |
|
|---|
| 333 |
if( !p_block ) |
|---|
| 334 |
{ |
|---|
| 335 |
msg_Dbg( p_image->p_parent, "no image encoded" ); |
|---|
| 336 |
return 0; |
|---|
| 337 |
} |
|---|
| 338 |
|
|---|
| 339 |
return p_block; |
|---|
| 340 |
} |
|---|
| 341 |
|
|---|
| 342 |
static int ImageWriteUrl( image_handler_t *p_image, picture_t *p_pic, |
|---|
| 343 |
video_format_t *p_fmt_in, video_format_t *p_fmt_out, |
|---|
| 344 |
const char *psz_url ) |
|---|
| 345 |
{ |
|---|
| 346 |
block_t *p_block; |
|---|
| 347 |
FILE *file; |
|---|
| 348 |
|
|---|
| 349 |
if( !p_fmt_out->i_chroma ) |
|---|
| 350 |
{ |
|---|
| 351 |
|
|---|
| 352 |
p_fmt_out->i_chroma = Ext2Fourcc( psz_url ); |
|---|
| 353 |
} |
|---|
| 354 |
|
|---|
| 355 |
file = utf8_fopen( psz_url, "wb" ); |
|---|
| 356 |
if( !file ) |
|---|
| 357 |
{ |
|---|
| 358 |
msg_Err( p_image->p_parent, "%s: %m", psz_url ); |
|---|
| 359 |
return VLC_EGENERIC; |
|---|
| 360 |
} |
|---|
| 361 |
|
|---|
| 362 |
p_block = ImageWrite( p_image, p_pic, p_fmt_in, p_fmt_out ); |
|---|
| 363 |
|
|---|
| 364 |
int err = 0; |
|---|
| 365 |
if( p_block ) |
|---|
| 366 |
{ |
|---|
| 367 |
if( fwrite( p_block->p_buffer, p_block->i_buffer, 1, file ) != 1 ) |
|---|
| 368 |
err = errno; |
|---|
| 369 |
block_Release( p_block ); |
|---|
| 370 |
} |
|---|
| 371 |
|
|---|
| 372 |
if( fclose( file ) && !err ) |
|---|
| 373 |
err = errno; |
|---|
| 374 |
|
|---|
| 375 |
if( err ) |
|---|
| 376 |
{ |
|---|
| 377 |
errno = err; |
|---|
| 378 |
msg_Err( p_image->p_parent, "%s: %m", psz_url ); |
|---|
| 379 |
} |
|---|
| 380 |
|
|---|
| 381 |
return err ? VLC_EGENERIC : VLC_SUCCESS; |
|---|
| 382 |
} |
|---|
| 383 |
|
|---|
| 384 |
|
|---|
| 385 |
|
|---|
| 386 |
|
|---|
| 387 |
|
|---|
| 388 |
|
|---|
| 389 |
static picture_t *ImageConvert( image_handler_t *p_image, picture_t *p_pic, |
|---|
| 390 |
video_format_t *p_fmt_in, |
|---|
| 391 |
video_format_t *p_fmt_out ) |
|---|
| 392 |
{ |
|---|
| 393 |
picture_t *p_pif; |
|---|
| 394 |
|
|---|
| 395 |
if( !p_fmt_out->i_width && !p_fmt_out->i_height && |
|---|
| 396 |
p_fmt_out->i_sar_num && p_fmt_out->i_sar_den && |
|---|
| 397 |
p_fmt_out->i_sar_num * p_fmt_in->i_sar_den != |
|---|
| 398 |
p_fmt_out->i_sar_den * p_fmt_in->i_sar_num ) |
|---|
| 399 |
{ |
|---|
| 400 |
p_fmt_out->i_width = |
|---|
| 401 |
p_fmt_in->i_sar_num * (int64_t)p_fmt_out->i_sar_den * |
|---|
| 402 |
p_fmt_in->i_width / p_fmt_in->i_sar_den / p_fmt_out->i_sar_num; |
|---|
| 403 |
p_fmt_out->i_visible_width = |
|---|
| 404 |
p_fmt_in->i_sar_num * (int64_t)p_fmt_out->i_sar_den * |
|---|
| 405 |
p_fmt_in->i_visible_width / p_fmt_in->i_sar_den / |
|---|
| 406 |
p_fmt_out->i_sar_num; |
|---|
| 407 |
} |
|---|
| 408 |
|
|---|
| 409 |
if( !p_fmt_out->i_chroma ) p_fmt_out->i_chroma = p_fmt_in->i_chroma; |
|---|
| 410 |
if( !p_fmt_out->i_width ) |
|---|
| 411 |
p_fmt_out->i_width = p_fmt_out->i_visible_width = p_fmt_in->i_width; |
|---|
| 412 |
if( !p_fmt_out->i_height ) |
|---|
| 413 |
p_fmt_out->i_height = p_fmt_out->i_visible_height = p_fmt_in->i_height; |
|---|
| 414 |
if( !p_fmt_out->i_sar_num ) p_fmt_out->i_sar_num = p_fmt_in->i_sar_num; |
|---|
| 415 |
if( !p_fmt_out->i_sar_den ) p_fmt_out->i_sar_den = p_fmt_in->i_sar_den; |
|---|
| 416 |
if( !p_fmt_out->i_aspect ) p_fmt_out->i_aspect = p_fmt_in->i_aspect; |
|---|
| 417 |
|
|---|
| 418 |
if( p_image->p_filter ) |
|---|
| 419 |
if( p_image->p_filter->fmt_in.video.i_chroma != p_fmt_in->i_chroma || |
|---|
| 420 |
p_image->p_filter->fmt_out.video.i_chroma != p_fmt_out->i_chroma ) |
|---|
| 421 |
{ |
|---|
| 422 |
|
|---|
| 423 |
DeleteFilter( p_image->p_filter ); |
|---|
| 424 |
p_image->p_filter = NULL; |
|---|
| 425 |
} |
|---|
| 426 |
|
|---|
| 427 |
|
|---|
| 428 |
if( !p_image->p_filter ) |
|---|
| 429 |
{ |
|---|
| 430 |
es_format_t fmt_in; |
|---|
| 431 |
es_format_Init( &fmt_in, VIDEO_ES, p_fmt_in->i_chroma ); |
|---|
| 432 |
fmt_in.video = *p_fmt_in; |
|---|
| 433 |
|
|---|
| 434 |
p_image->p_filter = |
|---|
| 435 |
CreateFilter( p_image->p_parent, &fmt_in, p_fmt_out, NULL ); |
|---|
| 436 |
|
|---|
| 437 |
if( !p_image->p_filter ) |
|---|
| 438 |
{ |
|---|
| 439 |
return NULL; |
|---|
| 440 |
} |
|---|
| 441 |
} |
|---|
| 442 |
else |
|---|
| 443 |
{ |
|---|
| 444 |
|
|---|
| 445 |
p_image->p_filter->fmt_in.video = *p_fmt_in; |
|---|
| 446 |
p_image->p_filter->fmt_out.video = *p_fmt_out; |
|---|
| 447 |
} |
|---|
| 448 |
|
|---|
| 449 |
picture_Hold( p_pic ); |
|---|
| 450 |
|
|---|
| 451 |
p_pif = p_image->p_filter->pf_video_filter( p_image->p_filter, p_pic ); |
|---|
| 452 |
|
|---|
| 453 |
if( p_fmt_in->i_chroma == p_fmt_out->i_chroma && |
|---|
| 454 |
p_fmt_in->i_width == p_fmt_out->i_width && |
|---|
| 455 |
p_fmt_in->i_height == p_fmt_out->i_height ) |
|---|
| 456 |
{ |
|---|
| 457 |
|
|---|
| 458 |
picture_Release( p_pif ); |
|---|
| 459 |
p_pif = p_image->p_filter->pf_vout_buffer_new( p_image->p_filter ); |
|---|
| 460 |
if( p_pif ) |
|---|
| 461 |
picture_Copy( p_pif, p_pic ); |
|---|
| 462 |
} |
|---|
| 463 |
|
|---|
| 464 |
return p_pif; |
|---|
| 465 |
} |
|---|
| 466 |
|
|---|
| 467 |
|
|---|
| 468 |
|
|---|
| 469 |
|
|---|
| 470 |
|
|---|
| 471 |
|
|---|
| 472 |
static picture_t *ImageFilter( image_handler_t *p_image, picture_t *p_pic, |
|---|
| 473 |
video_format_t *p_fmt, const char *psz_module ) |
|---|
| 474 |
{ |
|---|
| 475 |
|
|---|
| 476 |
if( !p_image->p_filter ) |
|---|
| 477 |
{ |
|---|
| 478 |
es_format_t fmt; |
|---|
| 479 |
es_format_Init( &fmt, VIDEO_ES, p_fmt->i_chroma ); |
|---|
| 480 |
fmt.video = *p_fmt; |
|---|
| 481 |
|
|---|
| 482 |
p_image->p_filter = |
|---|
| 483 |
CreateFilter( p_image->p_parent, &fmt, &fmt.video, psz_module ); |
|---|
| 484 |
|
|---|
| 485 |
if( !p_image->p_filter ) |
|---|
| 486 |
{ |
|---|
| 487 |
return NULL; |
|---|
| 488 |
} |
|---|
| 489 |
} |
|---|
| 490 |
else |
|---|
| 491 |
{ |
|---|
| 492 |
|
|---|
| 493 |
p_image->p_filter->fmt_in.video = *p_fmt; |
|---|
| 494 |
p_image->p_filter->fmt_out.video = *p_fmt; |
|---|
| 495 |
} |
|---|
| 496 |
|
|---|
| 497 |
picture_Hold( p_pic ); |
|---|
| 498 |
|
|---|
| 499 |
return p_image->p_filter->pf_video_filter( p_image->p_filter, p_pic ); |
|---|
| 500 |
} |
|---|
| 501 |
|
|---|
| 502 |
|
|---|
| 503 |
|
|---|
| 504 |
|
|---|
| 505 |
|
|---|
| 506 |
static const struct |
|---|
| 507 |
{ |
|---|
| 508 |
vlc_fourcc_t i_codec; |
|---|
| 509 |
const char *psz_ext; |
|---|
| 510 |
|
|---|
| 511 |
} ext_table[] = |
|---|
| 512 |
{ |
|---|
| 513 |
{ VLC_FOURCC('j','p','e','g'), "jpeg" }, |
|---|
| 514 |
{ VLC_FOURCC('j','p','e','g'), "jpg" }, |
|---|
| 515 |
{ VLC_FOURCC('l','j','p','g'), "ljpg" }, |
|---|
| 516 |
{ VLC_FOURCC('p','n','g',' '), "png" }, |
|---|
| 517 |
{ VLC_FOURCC('p','g','m',' '), "pgm" }, |
|---|
| 518 |
{ VLC_FOURCC('p','g','m','y'), "pgmyuv" }, |
|---|
| 519 |
{ VLC_FOURCC('p','b','m',' '), "pbm" }, |
|---|
| 520 |
{ VLC_FOURCC('p','a','m',' '), "pam" }, |
|---|
| 521 |
{ VLC_FOURCC('t','g','a',' '), "tga" }, |
|---|
| 522 |
{ VLC_FOURCC('b','m','p',' '), "bmp" }, |
|---|
| 523 |
{ VLC_FOURCC('p','n','m',' '), "pnm" }, |
|---|
| 524 |
{ VLC_FOURCC('x','p','m',' '), "xpm" }, |
|---|
| 525 |
{ VLC_FOURCC('x','c','f',' '), "xcf" }, |
|---|
| 526 |
{ VLC_FOURCC('p','c','x',' '), "pcx" }, |
|---|
| 527 |
{ VLC_FOURCC('g','i','f',' '), "gif" }, |
|---|
| 528 |
{ VLC_FOURCC('t','i','f','f'), "tif" }, |
|---|
| 529 |
{ VLC_FOURCC('t','i','f','f'), "tiff" }, |
|---|
| 530 |
{ VLC_FOURCC('l','b','m',' '), "lbm" }, |
|---|
| 531 |
{ 0, NULL } |
|---|
| 532 |
}; |
|---|
| 533 |
|
|---|
| 534 |
static vlc_fourcc_t Ext2Fourcc( const char *psz_name ) |
|---|
| 535 |
{ |
|---|
| 536 |
int i; |
|---|
| 537 |
|
|---|
| 538 |
psz_name = strrchr( psz_name, '.' ); |
|---|
| 539 |
if( !psz_name ) return 0; |
|---|
| 540 |
psz_name++; |
|---|
| 541 |
|
|---|
| 542 |
for( i = 0; ext_table[i].i_codec; i++ ) |
|---|
| 543 |
{ |
|---|
| 544 |
int j; |
|---|
| 545 |
for( j = 0; toupper(ext_table[i].psz_ext[j]) == toupper(psz_name[j]); |
|---|
| 546 |
j++ ) |
|---|
| 547 |
{ |
|---|
| 548 |
if( !ext_table[i].psz_ext[j] && !psz_name[j] ) |
|---|
| 549 |
return ext_table[i].i_codec; |
|---|
| 550 |
} |
|---|
| 551 |
} |
|---|
| 552 |
|
|---|
| 553 |
return 0; |
|---|
| 554 |
} |
|---|
| 555 |
|
|---|
| 556 |
|
|---|
| 557 |
|
|---|
| 558 |
|
|---|
| 559 |
|
|---|
| 560 |
|
|---|
| 561 |
|
|---|
| 562 |
|
|---|
| 563 |
|
|---|
| 564 |
|
|---|
| 565 |
|
|---|
| 566 |
|
|---|
| 567 |
|
|---|
| 568 |
|
|---|
| 569 |
|
|---|
| 570 |
static picture_t *video_new_buffer( decoder_t *p_dec ) |
|---|
| 571 |
{ |
|---|
| 572 |
p_dec->fmt_out.video.i_chroma = p_dec->fmt_out.i_codec; |
|---|
| 573 |
return picture_New( p_dec->fmt_out.video.i_chroma, |
|---|
| 574 |
p_dec->fmt_out.video.i_width, |
|---|
| 575 |
p_dec->fmt_out.video.i_height, |
|---|
| 576 |
p_dec->fmt_out.video.i_aspect ); |
|---|
| 577 |
} |
|---|
| 578 |
|
|---|
| 579 |
static void video_del_buffer( decoder_t *p_dec, picture_t *p_pic ) |
|---|
| 580 |
{ |
|---|
| 581 |
if( p_pic->i_refcount != 1 ) |
|---|
| 582 |
msg_Err( p_dec, "invalid picture reference count" ); |
|---|
| 583 |
|
|---|
| 584 |
p_pic->i_refcount = 0; |
|---|
| 585 |
picture_Delete( p_pic ); |
|---|
| 586 |
} |
|---|
| 587 |
|
|---|
| 588 |
static void video_link_picture( decoder_t *p_dec, picture_t *p_pic ) |
|---|
| 589 |
{ |
|---|
| 590 |
(void)p_dec; |
|---|
| 591 |
picture_Hold( p_pic ); |
|---|
| 592 |
} |
|---|
| 593 |
|
|---|
| 594 |
static void video_unlink_picture( decoder_t *p_dec, picture_t *p_pic ) |
|---|
| 595 |
{ |
|---|
| 596 |
(void)p_dec; |
|---|
| 597 |
picture_Release( p_pic ); |
|---|
| 598 |
} |
|---|
| 599 |
|
|---|
| 600 |
static decoder_t *CreateDecoder( vlc_object_t *p_this, video_format_t *fmt ) |
|---|
| 601 |
{ |
|---|
| 602 |
decoder_t *p_dec; |
|---|
| 603 |
|
|---|
| 604 |
p_dec = vlc_object_create( p_this, VLC_OBJECT_DECODER ); |
|---|
| 605 |
if( p_dec == NULL ) |
|---|
| 606 |
return NULL; |
|---|
| 607 |
|
|---|
| 608 |
p_dec->p_module = NULL; |
|---|
| 609 |
es_format_Init( &p_dec->fmt_in, VIDEO_ES, fmt->i_chroma ); |
|---|
| 610 |
es_format_Init( &p_dec->fmt_out, VIDEO_ES, 0 ); |
|---|
| 611 |
p_dec->fmt_in.video = *fmt; |
|---|
| 612 |
p_dec->b_pace_control = true; |
|---|
| 613 |
|
|---|
| 614 |
p_dec->pf_vout_buffer_new = video_new_buffer; |
|---|
| 615 |
p_dec->pf_vout_buffer_del = video_del_buffer; |
|---|
| 616 |
p_dec->pf_picture_link = video_link_picture; |
|---|
| 617 |
p_dec->pf_picture_unlink = video_unlink_picture; |
|---|
| 618 |
|
|---|
| 619 |
vlc_object_attach( p_dec, p_this ); |
|---|
| 620 |
|
|---|
| 621 |
|
|---|
| 622 |
p_dec->p_module = module_need( p_dec, "decoder", "$codec", 0 ); |
|---|
| 623 |
if( !p_dec->p_module ) |
|---|
| 624 |
{ |
|---|
| 625 |
msg_Err( p_dec, "no suitable decoder module for fourcc `%4.4s'.\n" |
|---|
| 626 |
"VLC probably does not support this image format.", |
|---|
| 627 |
(char*)&p_dec->fmt_in.i_codec ); |
|---|
| 628 |
|
|---|
| 629 |
DeleteDecoder( p_dec ); |
|---|
| 630 |
return NULL; |
|---|
| 631 |
} |
|---|
| 632 |
|
|---|
| 633 |
return p_dec; |
|---|
| 634 |
} |
|---|
| 635 |
|
|---|
| 636 |
static void DeleteDecoder( decoder_t * p_dec ) |
|---|
| 637 |
{ |
|---|
| 638 |
vlc_object_detach( p_dec ); |
|---|
| 639 |
|
|---|
| 640 |
if( p_dec->p_module ) module_unneed( p_dec, p_dec->p_module ); |
|---|
| 641 |
|
|---|
| 642 |
es_format_Clean( &p_dec->fmt_in ); |
|---|
| 643 |
es_format_Clean( &p_dec->fmt_out ); |
|---|
| 644 |
|
|---|
| 645 |
vlc_object_release( p_dec ); |
|---|
| 646 |
p_dec = NULL; |
|---|
| 647 |
} |
|---|
| 648 |
|
|---|
| 649 |
static encoder_t *CreateEncoder( vlc_object_t *p_this, video_format_t *fmt_in, |
|---|
| 650 |
video_format_t *fmt_out ) |
|---|
| 651 |
{ |
|---|
| 652 |
encoder_t *p_enc; |
|---|
| 653 |
|
|---|
| 654 |
p_enc = vlc_object_create( p_this, VLC_OBJECT_ENCODER ); |
|---|
| 655 |
if( p_enc == NULL ) |
|---|
| 656 |
return NULL; |
|---|
| 657 |
|
|---|
| 658 |
p_enc->p_module = NULL; |
|---|
| 659 |
es_format_Init( &p_enc->fmt_in, VIDEO_ES, fmt_in->i_chroma ); |
|---|
| 660 |
p_enc->fmt_in.video = *fmt_in; |
|---|
| 661 |
if( fmt_out->i_width > 0 && fmt_out->i_height > 0 ) |
|---|
| 662 |
{ |
|---|
| 663 |
p_enc->fmt_in.video.i_width = fmt_out->i_width; |
|---|
| 664 |
p_enc->fmt_in.video.i_height = fmt_out->i_height; |
|---|
| 665 |
|
|---|
| 666 |
if( fmt_out->i_visible_width > 0 && |
|---|
| 667 |
fmt_out->i_visible_height > 0 ) |
|---|
| 668 |
{ |
|---|
| 669 |
p_enc->fmt_in.video.i_visible_width = fmt_out->i_visible_width; |
|---|
| 670 |
p_enc->fmt_in.video.i_visible_height = fmt_out->i_visible_height; |
|---|
| 671 |
} |
|---|
| 672 |
else |
|---|
| 673 |
{ |
|---|
| 674 |
p_enc->fmt_in.video.i_visible_width = fmt_out->i_width; |
|---|
| 675 |
p_enc->fmt_in.video.i_visible_height = fmt_out->i_height; |
|---|
| 676 |
} |
|---|
| 677 |
} |
|---|
| 678 |
else if( fmt_out->i_sar_num && fmt_out->i_sar_den && |
|---|
| 679 |
fmt_out->i_sar_num * fmt_in->i_sar_den != |
|---|
| 680 |
fmt_out->i_sar_den * fmt_in->i_sar_num ) |
|---|
| 681 |
{ |
|---|
| 682 |
p_enc->fmt_in.video.i_width = |
|---|
| 683 |
fmt_in->i_sar_num * (int64_t)fmt_out->i_sar_den * fmt_in->i_width / |
|---|
| 684 |
fmt_in->i_sar_den / fmt_out->i_sar_num; |
|---|
| 685 |
p_enc->fmt_in.video.i_visible_width = |
|---|
| 686 |
fmt_in->i_sar_num * (int64_t)fmt_out->i_sar_den * |
|---|
| 687 |
fmt_in->i_visible_width / fmt_in->i_sar_den / fmt_out->i_sar_num; |
|---|
| 688 |
} |
|---|
| 689 |
|
|---|
| 690 |
p_enc->fmt_in.video.i_frame_rate = 25; |
|---|
| 691 |
p_enc->fmt_in.video.i_frame_rate_base = 1; |
|---|
| 692 |
|
|---|
| 693 |
es_format_Init( &p_enc->fmt_out, VIDEO_ES, fmt_out->i_chroma ); |
|---|
| 694 |
p_enc->fmt_out.video = *fmt_out; |
|---|
| 695 |
p_enc->fmt_out.video.i_width = p_enc->fmt_in.video.i_width; |
|---|
| 696 |
p_enc->fmt_out.video.i_height = p_enc->fmt_in.video.i_height; |
|---|
| 697 |
|
|---|
| 698 |
vlc_object_attach( p_enc, p_this ); |
|---|
| 699 |
|
|---|
| 700 |
|
|---|
| 701 |
p_enc->p_module = module_need( p_enc, "encoder", 0, 0 ); |
|---|
| 702 |
if( !p_enc->p_module ) |
|---|
| 703 |
{ |
|---|
| 704 |
msg_Err( p_enc, "no suitable encoder module for fourcc `%4.4s'.\n" |
|---|
| 705 |
"VLC probably does not support this image format.", |
|---|
| 706 |
(char*)&p_enc->fmt_out.i_codec ); |
|---|
| 707 |
|
|---|
| 708 |
DeleteEncoder( p_enc ); |
|---|
| 709 |
return NULL; |
|---|
| 710 |
} |
|---|
| 711 |
p_enc->fmt_in.video.i_chroma = p_enc->fmt_in.i_codec; |
|---|
| 712 |
|
|---|
| 713 |
return p_enc; |
|---|
| 714 |
} |
|---|
| 715 |
|
|---|
| 716 |
static void DeleteEncoder( encoder_t * p_enc ) |
|---|
| 717 |
{ |
|---|
| 718 |
vlc_object_detach( p_enc ); |
|---|
| 719 |
|
|---|
| 720 |
if( p_enc->p_module ) module_unneed( p_enc, p_enc->p_module ); |
|---|
| 721 |
|
|---|
| 722 |
es_format_Clean( &p_enc->fmt_in ); |
|---|
| 723 |
es_format_Clean( &p_enc->fmt_out ); |
|---|
| 724 |
|
|---|
| 725 |
vlc_object_release( p_enc ); |
|---|
| 726 |
p_enc = NULL; |
|---|
| 727 |
} |
|---|
| 728 |
|
|---|
| 729 |
static filter_t *CreateFilter( vlc_object_t *p_this, es_format_t *p_fmt_in, |
|---|
| 730 |
video_format_t *p_fmt_out, |
|---|
| 731 |
const char *psz_module ) |
|---|
| 732 |
{ |
|---|
| 733 |
static const char typename[] = "filter"; |
|---|
| 734 |
filter_t *p_filter; |
|---|
| 735 |
|
|---|
| 736 |
p_filter = vlc_custom_create( p_this, sizeof(filter_t), |
|---|
| 737 |
VLC_OBJECT_GENERIC, typename ); |
|---|
| 738 |
vlc_object_attach( p_filter, p_this ); |
|---|
| 739 |
|
|---|
| 740 |
p_filter->pf_vout_buffer_new = |
|---|
| 741 |
(picture_t *(*)(filter_t *))video_new_buffer; |
|---|
| 742 |
p_filter->pf_vout_buffer_del = |
|---|
| 743 |
(void (*)(filter_t *, picture_t *))video_del_buffer; |
|---|
| 744 |
|
|---|
| 745 |
p_filter->fmt_in = *p_fmt_in; |
|---|
| 746 |
p_filter->fmt_out = *p_fmt_in; |
|---|
| 747 |
p_filter->fmt_out.i_codec = p_fmt_out->i_chroma; |
|---|
| 748 |
p_filter->fmt_out.video = *p_fmt_out; |
|---|
| 749 |
p_filter->p_module = module_need( p_filter, "video filter2", |
|---|
| 750 |
psz_module, 0 ); |
|---|
| 751 |
|
|---|
| 752 |
if( !p_filter->p_module ) |
|---|
| 753 |
{ |
|---|
| 754 |
msg_Dbg( p_filter, "no video filter found" ); |
|---|
| 755 |
DeleteFilter( p_filter ); |
|---|
| 756 |
return NULL; |
|---|
| 757 |
} |
|---|
| 758 |
|
|---|
| 759 |
return p_filter; |
|---|
| 760 |
} |
|---|
| 761 |
|
|---|
| 762 |
static void DeleteFilter( filter_t * p_filter ) |
|---|
| 763 |
{ |
|---|
| 764 |
vlc_object_detach( p_filter ); |
|---|
| 765 |
|
|---|
| 766 |
if( p_filter->p_module ) module_unneed( p_filter, p_filter->p_module ); |
|---|
| 767 |
|
|---|
| 768 |
es_format_Clean( &p_filter->fmt_in ); |
|---|
| 769 |
es_format_Clean( &p_filter->fmt_out ); |
|---|
| 770 |
|
|---|
| 771 |
vlc_object_release( p_filter ); |
|---|
| 772 |
} |
|---|