Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-30 03:09:06 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-07-30 21:19:22 +0400
commitba3e3311ef3f8b33a975535988d2305cea15d514 (patch)
tree27c113b309e9fd4ed542766f5fbfbd7687bb6539 /libavutil/frame.h
parent6f622e5fcbe8484af194436b8dd4ff01f092ab99 (diff)
avutil/frame: add av_frame_side_data_name()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/frame.h')
-rw-r--r--libavutil/frame.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/frame.h b/libavutil/frame.h
index a39c8d07ff..c57eb552e2 100644
--- a/libavutil/frame.h
+++ b/libavutil/frame.h
@@ -728,6 +728,11 @@ AVFrameSideData *av_frame_get_side_data(const AVFrame *frame,
void av_frame_remove_side_data(AVFrame *frame, enum AVFrameSideDataType type);
/**
+ * @return a string identifying the side data type
+ */
+const char *av_frame_side_data_name(enum AVFrameSideDataType type);
+
+/**
* @}
*/