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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2016-11-12 01:25:43 +0300
committerVittorio Giovara <vittorio.giovara@gmail.com>2016-12-07 22:39:04 +0300
commit8f58ecc344a92e63193c38e28c173be987954bbb (patch)
tree726e17f01ac162d303f21356a118db8e7568e08e /libavutil/frame.h
parentc188f358aaee5800af5a5d699dd657cef3fb43a6 (diff)
lavu: Add AVSphericalMapping type and frame side data
While no decoder currently exports spherical information, this type represents a frame property that has to be passed through from container to frames. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavutil/frame.h')
-rw-r--r--libavutil/frame.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/libavutil/frame.h b/libavutil/frame.h
index 8e51361e29..b4500923af 100644
--- a/libavutil/frame.h
+++ b/libavutil/frame.h
@@ -120,7 +120,13 @@ enum AVFrameSideDataType {
* The GOP timecode in 25 bit timecode format. Data format is 64-bit integer.
* This is set on the first frame of a GOP that has a temporal reference of 0.
*/
- AV_FRAME_DATA_GOP_TIMECODE
+ AV_FRAME_DATA_GOP_TIMECODE,
+
+ /**
+ * The data represents the AVSphericalMapping structure defined in
+ * libavutil/spherical.h.
+ */
+ AV_FRAME_DATA_SPHERICAL,
};
enum AVActiveFormatDescription {