diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-11-07 13:09:03 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-12-07 14:32:17 -0500 |
commit | c70add61d1551bf31734f7ef7d87824ff5389280 (patch) | |
tree | 4379698bf4b601f24bb5747bc288dbfa466ad937 /libavutil/frame.h | |
parent | 075acbb6ff5740b2eea1bb7dd3afbc8e66e2ebf8 (diff) | |
download | ffmpeg-c70add61d1551bf31734f7ef7d87824ff5389280.tar.gz |
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.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavutil/frame.h b/libavutil/frame.h index 12624d797f..4052199fd3 100644 --- a/libavutil/frame.h +++ b/libavutil/frame.h @@ -92,6 +92,12 @@ enum AVFrameSideDataType { * enum AVAudioServiceType defined in avcodec.h. */ AV_FRAME_DATA_AUDIO_SERVICE_TYPE, + + /** + * The data represents the AVSphericalMapping structure defined in + * libavutil/spherical.h. + */ + AV_FRAME_DATA_SPHERICAL, }; enum AVActiveFormatDescription { |