doxy: Add AVFrame to the structured modules

This commit is contained in:
Luca Barbato 2014-01-16 01:04:35 +01:00
parent 87acd33c09
commit ff23c4e493
1 changed files with 19 additions and 0 deletions

View File

@ -17,6 +17,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* @file
* @ingroup lavu_frame
* reference-counted frame API
*/
#ifndef AVUTIL_FRAME_H
#define AVUTIL_FRAME_H
@ -29,6 +35,15 @@
#include "samplefmt.h"
#include "version.h"
/**
* @defgroup lavu_frame AVFrame
* @ingroup lavu_data
*
* @{
* AVFrame is an abstraction for reference-counted raw multimedia data.
*/
enum AVFrameSideDataType {
/**
* The data is the AVPanScan struct defined in libavcodec.
@ -515,4 +530,8 @@ AVFrameSideData *av_frame_new_side_data(AVFrame *frame,
AVFrameSideData *av_frame_get_side_data(const AVFrame *frame,
enum AVFrameSideDataType type);
/**
* @}
*/
#endif /* AVUTIL_FRAME_H */