VLC  4.0.0-dev
Data Structures | Typedefs | Functions
thumbnailer.c File Reference
Include dependency graph for thumbnailer.c:

Data Structures

struct  vlc_thumbnailer_t
 
struct  vlc_thumbnailer_params_t
 
struct  vlc_thumbnailer_request_t
 

Typedefs

typedef struct vlc_thumbnailer_params_t vlc_thumbnailer_params_t
 

Functions

static void on_thumbnailer_input_event (input_thread_t *input, const struct vlc_input_event *event, void *userdata)
 
static void thumbnailer_request_Hold (void *data)
 
static void thumbnailer_request_Release (void *data)
 
static int thumbnailer_request_Start (void *owner, void *entity, void **out)
 
static void thumbnailer_request_Stop (void *owner, void *handle)
 
static int thumbnailer_request_Probe (void *owner, void *handle)
 
static vlc_thumbnailer_request_tthumbnailer_RequestCommon (vlc_thumbnailer_t *thumbnailer, const vlc_thumbnailer_params_t *params)
 
vlc_thumbnailer_request_tvlc_thumbnailer_RequestByTime (vlc_thumbnailer_t *thumbnailer, vlc_tick_t time, enum vlc_thumbnailer_seek_speed speed, input_item_t *input_item, vlc_tick_t timeout, vlc_thumbnailer_cb cb, void *user_data)
 vlc_thumbnailer_RequestByTime Requests a thumbnailer at a given time More...
 
vlc_thumbnailer_request_tvlc_thumbnailer_RequestByPos (vlc_thumbnailer_t *thumbnailer, float pos, enum vlc_thumbnailer_seek_speed speed, input_item_t *input_item, vlc_tick_t timeout, vlc_thumbnailer_cb cb, void *user_data)
 vlc_thumbnailer_RequestByTime Requests a thumbnailer at a given time More...
 
void vlc_thumbnailer_Cancel (vlc_thumbnailer_t *thumbnailer, vlc_thumbnailer_request_t *req)
 vlc_thumbnailer_Cancel Cancel a thumbnail request More...
 
vlc_thumbnailer_tvlc_thumbnailer_Create (vlc_object_t *parent)
 vlc_thumbnailer_Create Creates a thumbnailer object More...
 
void vlc_thumbnailer_Release (vlc_thumbnailer_t *thumbnailer)
 vlc_thumbnailer_Release releases a thumbnailer and cancel all pending requests More...
 

Typedef Documentation

◆ vlc_thumbnailer_params_t

Function Documentation

◆ on_thumbnailer_input_event()

static void on_thumbnailer_input_event ( input_thread_t input,
const struct vlc_input_event event,
void *  userdata 
)
static

◆ thumbnailer_request_Hold()

static void thumbnailer_request_Hold ( void *  data)
static

References VLC_UNUSED.

Referenced by vlc_thumbnailer_Create().

◆ thumbnailer_request_Probe()

static int thumbnailer_request_Probe ( void *  owner,
void *  handle 
)
static

◆ thumbnailer_request_Release()

static void thumbnailer_request_Release ( void *  data)
static

◆ thumbnailer_request_Start()

static int thumbnailer_request_Start ( void *  owner,
void *  entity,
void **  out 
)
static

◆ thumbnailer_request_Stop()

static void thumbnailer_request_Stop ( void *  owner,
void *  handle 
)
static

◆ thumbnailer_RequestCommon()

static vlc_thumbnailer_request_t* thumbnailer_RequestCommon ( vlc_thumbnailer_t thumbnailer,
const vlc_thumbnailer_params_t params 
)
static

◆ vlc_thumbnailer_Cancel()

void vlc_thumbnailer_Cancel ( vlc_thumbnailer_t thumbnailer,
vlc_thumbnailer_request_t request 
)

vlc_thumbnailer_Cancel Cancel a thumbnail request

Parameters
thumbnailerA thumbnailer object
requestAn opaque thumbnail request object

Cancelling a request will not invoke the completion callback. The behavior is undefined if the request is cancelled after its completion.

References background_worker_Cancel(), vlc_thumbnailer_params_t::cb, vlc_thumbnailer_request_t::lock, vlc_thumbnailer_request_t::params, vlc_mutex_lock(), vlc_mutex_unlock(), and vlc_thumbnailer_t::worker.

◆ vlc_thumbnailer_Create()

vlc_thumbnailer_t* vlc_thumbnailer_Create ( vlc_object_t p_parent)

vlc_thumbnailer_Create Creates a thumbnailer object

Parameters
parentA VLC object
Returns
A thumbnailer object, or NULL in case of failure

References background_worker_New(), background_worker_config::default_timeout, vlc_thumbnailer_t::parent, thumbnailer_request_Hold(), thumbnailer_request_Probe(), thumbnailer_request_Release(), thumbnailer_request_Start(), thumbnailer_request_Stop(), unlikely, and vlc_thumbnailer_t::worker.

Referenced by libvlc_InternalInit().

◆ vlc_thumbnailer_Release()

void vlc_thumbnailer_Release ( vlc_thumbnailer_t thumbnailer)

vlc_thumbnailer_Release releases a thumbnailer and cancel all pending requests

Parameters
thumbnailerA thumbnailer object

References background_worker_Delete(), and vlc_thumbnailer_t::worker.

Referenced by libvlc_InternalCleanup().

◆ vlc_thumbnailer_RequestByPos()

vlc_thumbnailer_request_t* vlc_thumbnailer_RequestByPos ( vlc_thumbnailer_t thumbnailer,
float  pos,
enum vlc_thumbnailer_seek_speed  speed,
input_item_t input_item,
vlc_tick_t  timeout,
vlc_thumbnailer_cb  cb,
void *  user_data 
)

vlc_thumbnailer_RequestByTime Requests a thumbnailer at a given time

Parameters
thumbnailerA thumbnailer object
posThe position at which the thumbnail should be taken
speedThe seeking speed
See also
{enum vlc_thumbnailer_seek_speed}
Parameters
input_itemThe input item to generate the thumbnail for
timeoutA timeout value, or VLC_TICK_INVALID to disable timeout
cbA user callback to be called on completion (success & error)
user_dataAn opaque value, provided as pf_cb's first parameter
Returns
An opaque request object, or NULL in case of failure

If this function returns a valid request object, the callback is guaranteed to be called, even in case of later failure. The returned request object must not be used after the callback has been invoked. That request object is owned by the thumbnailer, and must not be released. The provided input_item will be held by the thumbnailer and can safely be released after calling this function.

References thumbnailer_RequestCommon(), and VLC_THUMBNAILER_SEEK_FAST.

◆ vlc_thumbnailer_RequestByTime()

vlc_thumbnailer_request_t* vlc_thumbnailer_RequestByTime ( vlc_thumbnailer_t thumbnailer,
vlc_tick_t  time,
enum vlc_thumbnailer_seek_speed  speed,
input_item_t input_item,
vlc_tick_t  timeout,
vlc_thumbnailer_cb  cb,
void *  user_data 
)

vlc_thumbnailer_RequestByTime Requests a thumbnailer at a given time

Parameters
thumbnailerA thumbnailer object
timeThe time at which the thumbnail should be taken
speedThe seeking speed
See also
{enum vlc_thumbnailer_seek_speed}
Parameters
input_itemThe input item to generate the thumbnail for
timeoutA timeout value, or VLC_TICK_INVALID to disable timeout
cbA user callback to be called on completion (success & error)
user_dataAn opaque value, provided as pf_cb's first parameter
Returns
An opaque request object, or NULL in case of failure

If this function returns a valid request object, the callback is guaranteed to be called, even in case of later failure. The returned request object must not be used after the callback has been invoked. That request object is owned by the thumbnailer, and must not be released. The provided input_item will be held by the thumbnailer and can safely be released safely after calling this function.

References thumbnailer_RequestCommon(), and VLC_THUMBNAILER_SEEK_FAST.