* include/vlc_video.h: Added a p_next pointer to link pictures.

This commit is contained in:
Christophe Massiot 2005-04-15 19:51:23 +00:00
parent 9b84890c73
commit 0ae97f35d3
1 changed files with 3 additions and 0 deletions

View File

@ -110,6 +110,9 @@ struct picture_t
/** This way the picture_Release can be overloaded */
void (*pf_release)( picture_t * );
/** Next picture in a FIFO a pictures */
struct picture_t *p_next;
};
/**