|
|
|
@ -41,7 +41,7 @@ struct image_handler_t |
|
|
|
const video_format_t *, const uint8_t *, size_t, |
|
|
|
video_format_t * ); |
|
|
|
picture_t * (*pf_read_url) ( image_handler_t *, const char *, |
|
|
|
const video_format_t *, video_format_t * ); |
|
|
|
video_format_t * ); |
|
|
|
block_t * (*pf_write) ( image_handler_t *, picture_t *, |
|
|
|
const video_format_t *, const video_format_t * ); |
|
|
|
int (*pf_write_url) ( image_handler_t *, picture_t *, |
|
|
|
@ -66,7 +66,7 @@ VLC_API void image_HandlerDelete( image_handler_t * ); |
|
|
|
|
|
|
|
#define image_Read( a, b, c, d ) a->pf_read( a, b, c, NULL, 0, d ) |
|
|
|
#define image_ReadExt( a, b, c, d, e, f ) a->pf_read( a, b, c, d, e, f ) |
|
|
|
#define image_ReadUrl( a, b, c, d ) a->pf_read_url( a, b, c, d ) |
|
|
|
#define image_ReadUrl( a, b, c ) a->pf_read_url( a, b, c ) |
|
|
|
#define image_Write( a, b, c, d ) a->pf_write( a, b, c, d ) |
|
|
|
#define image_WriteUrl( a, b, c, d, e ) a->pf_write_url( a, b, c, d, e ) |
|
|
|
#define image_Convert( a, b, c, d ) a->pf_convert( a, b, c, d ) |
|
|
|
|