Skip to content
Snippets Groups Projects
Commit ff23c4e4 authored by Luca Barbato's avatar Luca Barbato
Browse files

doxy: Add AVFrame to the structured modules

parent 87acd33c
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,12 @@ ...@@ -17,6 +17,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
/**
* @file
* @ingroup lavu_frame
* reference-counted frame API
*/
#ifndef AVUTIL_FRAME_H #ifndef AVUTIL_FRAME_H
#define AVUTIL_FRAME_H #define AVUTIL_FRAME_H
...@@ -29,6 +35,15 @@ ...@@ -29,6 +35,15 @@
#include "samplefmt.h" #include "samplefmt.h"
#include "version.h" #include "version.h"
/**
* @defgroup lavu_frame AVFrame
* @ingroup lavu_data
*
* @{
* AVFrame is an abstraction for reference-counted raw multimedia data.
*/
enum AVFrameSideDataType { enum AVFrameSideDataType {
/** /**
* The data is the AVPanScan struct defined in libavcodec. * The data is the AVPanScan struct defined in libavcodec.
...@@ -515,4 +530,8 @@ AVFrameSideData *av_frame_new_side_data(AVFrame *frame, ...@@ -515,4 +530,8 @@ AVFrameSideData *av_frame_new_side_data(AVFrame *frame,
AVFrameSideData *av_frame_get_side_data(const AVFrame *frame, AVFrameSideData *av_frame_get_side_data(const AVFrame *frame,
enum AVFrameSideDataType type); enum AVFrameSideDataType type);
/**
* @}
*/
#endif /* AVUTIL_FRAME_H */ #endif /* AVUTIL_FRAME_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment