2 * Copyright (c) 2013 Vittorio Giovara <vittorio.giovara@gmail.com>
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #ifndef AVUTIL_STEREO3D_H
22 #define AVUTIL_STEREO3D_H
29 * List of possible 3D Types
33 * Video is not stereoscopic (and metadata has to be there).
38 * Views are next to each other.
45 AV_STEREO3D_SIDEBYSIDE
,
48 * Views are on top of each other.
55 AV_STEREO3D_TOPBOTTOM
,
58 * Views are alternated temporally.
60 * frame0 frame1 frame2 ...
61 * LLLLLLLL RRRRRRRR LLLLLLLL
62 * LLLLLLLL RRRRRRRR LLLLLLLL
63 * LLLLLLLL RRRRRRRR LLLLLLLL
66 AV_STEREO3D_FRAMESEQUENCE
,
69 * Views are packed in a checkerboard-like structure per pixel.
76 AV_STEREO3D_CHECKERBOARD
,
79 * Views are next to each other, but when upscaling
80 * apply a checkerboard pattern.
82 * LLLLRRRR L L L L R R R R
83 * LLLLRRRR => L L L L R R R R
84 * LLLLRRRR L L L L R R R R
85 * LLLLRRRR L L L L R R R R
87 AV_STEREO3D_SIDEBYSIDE_QUINCUNX
,
90 * Views are packed per line, as if interlaced.
100 * Views are packed per column.
112 * Inverted views, Right/Bottom represents the left view.
114 #define AV_STEREO3D_FLAG_INVERT (1 << 0)
117 * Stereo 3D type: this structure describes how two videos are packed
118 * within a single video surface, with additional information as needed.
120 * @note The struct must be allocated with av_stereo3d_alloc() and
121 * its size is not a part of the public ABI.
123 typedef struct AVStereo3D
{
125 * How views are packed within the video.
127 enum AVStereo3DType type
;
130 * Additional information about the frame packing.
136 * Allocate an AVStereo3D structure and set its fields to default values.
137 * The resulting struct can be freed using av_freep().
139 * @return An AVStereo3D filled with default values or NULL on failure.
141 AVStereo3D
*av_stereo3d_alloc(void);
144 * Allocate a complete AVFrameSideData and add it to the frame.
146 * @param frame The frame which side data is added to.
148 * @return The AVStereo3D structure to be filled by caller.
150 AVStereo3D
*av_stereo3d_create_side_data(AVFrame
*frame
);
152 #endif /* AVUTIL_STEREO3D_H */