diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-11-11 17:37:43 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-12-07 14:40:06 -0500 |
commit | e7a6f8c972a0b5b98ef7bbf393e95c434e9e2539 (patch) | |
tree | 42c66d8d8c6d25467241d92b68b111b33dd55d7c /libavcodec/avcodec.h | |
parent | 8f58ecc344a92e63193c38e28c173be987954bbb (diff) | |
download | ffmpeg-e7a6f8c972a0b5b98ef7bbf393e95c434e9e2539.tar.gz |
lavc: Add spherical packet side data API
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index e5e7f4225d..7ac2adaf66 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1536,7 +1536,13 @@ enum AVPacketSideDataType { * should be associated with a video stream and containts data in the form * of the AVMasteringDisplayMetadata struct. */ - AV_PKT_DATA_MASTERING_DISPLAY_METADATA + AV_PKT_DATA_MASTERING_DISPLAY_METADATA, + + /** + * This side data should be associated with a video stream and corresponds + * to the AVSphericalMapping structure. + */ + AV_PKT_DATA_SPHERICAL, }; #define AV_PKT_DATA_QUALITY_FACTOR AV_PKT_DATA_QUALITY_STATS //DEPRECATED |