1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-28 23:09:59 +02:00

Moved picture_heap_t out of vlc_vout.h

This commit is contained in:
Laurent Aimar 2010-04-18 19:58:19 +02:00
parent 345afd987d
commit b147e3fa23
3 changed files with 13 additions and 14 deletions

View File

@ -251,7 +251,6 @@ typedef struct vout_thread_t vout_thread_t;
typedef video_format_t video_frame_format_t;
typedef struct picture_t picture_t;
typedef struct picture_sys_t picture_sys_t;
typedef struct picture_heap_t picture_heap_t;
/* Subpictures */
typedef struct spu_t spu_t;

View File

@ -35,19 +35,6 @@
#include <vlc_filter.h>
#include <vlc_subpicture.h>
/**
* Video picture heap, either render (to store pictures used
* by the decoder) or output (to store pictures displayed by the vout plugin)
*/
struct picture_heap_t
{
int i_pictures; /**< current heap size */
/* Real pictures */
picture_t* pp_picture[VOUT_MAX_PICTURES]; /**< pictures */
int i_last_used_pic; /**< last used pic in heap */
};
/*****************************************************************************
* Prototypes
*****************************************************************************/

View File

@ -40,6 +40,19 @@
/* */
typedef struct vout_sys_t vout_sys_t;
/**
* Video picture heap, either render (to store pictures used
* by the decoder) or output (to store pictures displayed by the vout plugin)
*/
typedef struct
{
int i_pictures; /**< current heap size */
/* Real pictures */
picture_t* pp_picture[VOUT_MAX_PICTURES]; /**< pictures */
int i_last_used_pic; /**< last used pic in heap */
} picture_heap_t;
/* */
struct vout_thread_sys_t
{