Commit 68ebf70f authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'ff23c4e4'

* commit 'ff23c4e4':
  doxy: Add AVFrame to the structured modules

Conflicts:
	libavutil/frame.h
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents c8b99f8a ff23c4e4
......@@ -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,7 @@
#include "samplefmt.h"
#include "version.h"
enum AVColorSpace{
AVCOL_SPC_RGB = 0,
AVCOL_SPC_BT709 = 1, ///< also ITU-R BT1361 / IEC 61966-2-4 xvYCC709 / SMPTE RP177 Annex B
......@@ -52,6 +59,14 @@ enum AVColorRange{
};
/**
* @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.
......@@ -683,4 +698,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 */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment