VLC 4.0.0-dev
vlc_picture_pool.h File Reference

This file defines picture pool structures and functions in vlc. More...

Include dependency graph for vlc_picture_pool.h:

Go to the source code of this file.

Typedefs

typedef struct picture_pool_t picture_pool_t
 Picture pool handle. More...
 

Functions

picture_pool_tpicture_pool_New (unsigned count, picture_t *const *tab)
 Creates a pool of preallocated pictures. More...
 
picture_pool_tpicture_pool_NewFromFormat (const video_format_t *fmt, unsigned count)
 Allocates pictures from the heap and creates a picture pool with them. More...
 
void picture_pool_Release (picture_pool_t *)
 Releases a pool created by picture_pool_New() or picture_pool_NewFromFormat(). More...
 
picture_tpicture_pool_Get (picture_pool_t *)
 Obtains a picture from a pool if any is immediately available. More...
 
picture_tpicture_pool_Wait (picture_pool_t *)
 Obtains a picture from a pool. More...
 
picture_pool_tpicture_pool_Reserve (picture_pool_t *, unsigned count)
 Reserves pictures from a pool and creates a new pool with those. More...
 
unsigned picture_pool_GetSize (const picture_pool_t *)
 

Detailed Description

This file defines picture pool structures and functions in vlc.

Typedef Documentation

◆ picture_pool_t

Picture pool handle.

Function Documentation

◆ picture_pool_Get()

picture_t * picture_pool_Get ( picture_pool_t pool)

Obtains a picture from a pool if any is immediately available.

The picture must be released with picture_Release().

Returns
a picture, or NULL if all pictures in the pool are allocated
Note
This function is thread-safe.

References picture_pool_t::available, ctz, picture_pool_t::lock, picture_pool_ClonePicture(), picture_pool_t::refs, vlc_atomic_rc_get(), vlc_mutex_lock(), and vlc_mutex_unlock().

Referenced by picture_pool_Reserve(), PrerenderPicture(), VideoBufferNew(), and VoutVideoFilterInteractiveNewPicture().

◆ picture_pool_GetSize()

unsigned picture_pool_GetSize ( const picture_pool_t pool)
Returns
the total number of pictures in the given pool
Note
This function is thread-safe.

References picture_pool_t::picture_count.

Referenced by vout_OpenWrapper().

◆ picture_pool_New()

picture_pool_t * picture_pool_New ( unsigned  count,
picture_t *const *  tab 
)

Creates a pool of preallocated pictures.

Free pictures can be allocated from the pool, and are returned to the pool when they are no longer referenced.

This avoids allocating and deallocationg pictures repeatedly, and ensures that memory consumption remains within limits.

To obtain a picture from the pool, use picture_pool_Get(). To increase and decrease the reference count, use picture_Hold() and picture_Release() respectively.

Parameters
countnumber of pictures in the array
tabarray of pictures
Returns
a pointer to the new pool on success, or NULL on error (pictures are not released on error)

References aligned_alloc(), picture_pool_t::available, count, picture_pool_t::lock, picture_pool_t::picture, picture_pool_t::picture_count, POOL_MAX, picture_pool_t::refs, unlikely, vlc_atomic_rc_init(), vlc_cond_init(), vlc_mutex_init(), and picture_pool_t::wait.

Referenced by picture_pool_NewFromFormat(), and picture_pool_Reserve().

◆ picture_pool_NewFromFormat()

picture_pool_t * picture_pool_NewFromFormat ( const video_format_t fmt,
unsigned  count 
)

Allocates pictures from the heap and creates a picture pool with them.

This is a convenience wrapper for picture_NewFromFormat() and picture_pool_New().

Parameters
fmtvideo format of pictures to allocate from the heap
countnumber of pictures to allocate
Returns
a pointer to the new pool on success, NULL on error

References count, picture_NewFromFormat(), picture_pool_New(), picture_Release(), POOL_MAX, unlikely, and vlc_assert_unreachable.

Referenced by ModuleThread_UpdateVideoFormat(), vout_GetPool(), and vout_OpenWrapper().

◆ picture_pool_Release()

void picture_pool_Release ( picture_pool_t pool)

Releases a pool created by picture_pool_New() or picture_pool_NewFromFormat().

Note
If there are no pending references to the pooled pictures, and the picture_resource_t.pf_destroy callback was not NULL, it will be invoked. Otherwise the default callback will be used.
Warning
If there are pending references (a.k.a. late pictures), the pictures will remain valid until the all pending references are dropped by picture_Release().

References picture_pool_t::picture, picture_pool_t::picture_count, picture_pool_Destroy(), and picture_Release().

Referenced by CreateVoutIfNeeded(), DeleteDecoder(), vout_CloseWrapper(), vout_display_Delete(), vout_display_Reset(), and vout_OpenWrapper().

◆ picture_pool_Reserve()

picture_pool_t * picture_pool_Reserve ( picture_pool_t master,
unsigned  count 
)

Reserves pictures from a pool and creates a new pool with those.

When the new pool is released, pictures are returned to the master pool. If the master pool was already released, pictures will be destroyed.

Parameters
countnumber of picture to reserve
Returns
the new pool, or NULL if there were not enough pictures available or on error
Note
This function is thread-safe (but it might return NULL if other threads have already allocated too many pictures).

References count, picture_pool_Get(), picture_pool_New(), picture_Release(), POOL_MAX, unlikely, and vlc_assert_unreachable.

Referenced by vout_OpenWrapper().

◆ picture_pool_Wait()

picture_t * picture_pool_Wait ( picture_pool_t pool)

Obtains a picture from a pool.

The picture must be released with picture_Release().

Returns
a picture or NULL on memory error
Note
This function is thread-safe.

References picture_pool_t::available, ctz, picture_pool_t::lock, picture_pool_ClonePicture(), picture_pool_t::refs, vlc_atomic_rc_get(), vlc_cond_wait(), vlc_mutex_lock(), vlc_mutex_unlock(), and picture_pool_t::wait.

Referenced by ModuleThread_NewVideoBuffer().