mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avutil/stereo3d: add a Stereo3D view to signal that the view is unspecified
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
1c8b32e19f
commit
8af0919cc6
@ -2,6 +2,9 @@ The last version increases of all libraries were on 2024-03-07
|
||||
|
||||
API changes, most recent first:
|
||||
|
||||
2024-06-28 - xxxxxxxxxx - lavu 59.27.100 - stereo3d.h
|
||||
Add AV_STEREO3D_UNSPEC and AV_STEREO3D_VIEW_UNSPEC.
|
||||
|
||||
2024-06-25 - xxxxxxxxxx - lavu 59.26.100 - stereo3d.h
|
||||
Add av_stereo3d_alloc_size().
|
||||
|
||||
|
@ -81,6 +81,7 @@ static const char * const stereo3d_view_names[] = {
|
||||
[AV_STEREO3D_VIEW_PACKED] = "packed",
|
||||
[AV_STEREO3D_VIEW_LEFT] = "left",
|
||||
[AV_STEREO3D_VIEW_RIGHT] = "right",
|
||||
[AV_STEREO3D_VIEW_UNSPEC] = "unspecified",
|
||||
};
|
||||
|
||||
static const char * const stereo3d_primary_eye_names[] = {
|
||||
|
@ -161,6 +161,11 @@ enum AVStereo3DView {
|
||||
* Frame contains only the right view.
|
||||
*/
|
||||
AV_STEREO3D_VIEW_RIGHT,
|
||||
|
||||
/**
|
||||
* Content is unspecified.
|
||||
*/
|
||||
AV_STEREO3D_VIEW_UNSPEC,
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -79,7 +79,7 @@
|
||||
*/
|
||||
|
||||
#define LIBAVUTIL_VERSION_MAJOR 59
|
||||
#define LIBAVUTIL_VERSION_MINOR 26
|
||||
#define LIBAVUTIL_VERSION_MINOR 27
|
||||
#define LIBAVUTIL_VERSION_MICRO 100
|
||||
|
||||
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
|
||||
|
Loading…
Reference in New Issue
Block a user