g3dvl: stash interlaced
[mesa/nouveau-pmpeg.git] / src / gallium / include / pipe / p_video_enums.h
blob657f4372b108fe223d51bc79fc89ac4fe08a3b68
1 /**************************************************************************
3 * Copyright 2009 Younes Manton.
4 * All Rights Reserved.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
28 #ifndef PIPE_VIDEO_ENUMS_H
29 #define PIPE_VIDEO_ENUMS_H
31 enum pipe_video_profile
33 PIPE_VIDEO_PROFILE_UNKNOWN,
34 PIPE_VIDEO_PROFILE_MPEG1,
35 PIPE_VIDEO_PROFILE_MPEG2_SIMPLE,
36 PIPE_VIDEO_PROFILE_MPEG2_MAIN,
37 PIPE_VIDEO_PROFILE_MPEG4_SIMPLE,
38 PIPE_VIDEO_PROFILE_MPEG4_ADVANCED_SIMPLE,
39 PIPE_VIDEO_PROFILE_VC1_SIMPLE,
40 PIPE_VIDEO_PROFILE_VC1_MAIN,
41 PIPE_VIDEO_PROFILE_VC1_ADVANCED,
42 PIPE_VIDEO_PROFILE_MPEG4_AVC_BASELINE,
43 PIPE_VIDEO_PROFILE_MPEG4_AVC_MAIN,
44 PIPE_VIDEO_PROFILE_MPEG4_AVC_HIGH
47 /* Video caps, can be different for each codec/profile */
48 enum pipe_video_cap
50 PIPE_VIDEO_CAP_SUPPORTED = 0,
51 PIPE_VIDEO_CAP_NPOT_TEXTURES = 1,
52 PIPE_VIDEO_CAP_MAX_WIDTH = 2,
53 PIPE_VIDEO_CAP_MAX_HEIGHT = 3
56 enum pipe_video_codec
58 PIPE_VIDEO_CODEC_UNKNOWN = 0,
59 PIPE_VIDEO_CODEC_MPEG12, /**< MPEG1, MPEG2 */
60 PIPE_VIDEO_CODEC_MPEG4, /**< DIVX, XVID */
61 PIPE_VIDEO_CODEC_VC1, /**< WMV */
62 PIPE_VIDEO_CODEC_MPEG4_AVC /**< H.264 */
65 enum pipe_video_entrypoint
67 PIPE_VIDEO_ENTRYPOINT_UNKNOWN,
68 PIPE_VIDEO_ENTRYPOINT_BITSTREAM,
69 PIPE_VIDEO_ENTRYPOINT_IDCT,
70 PIPE_VIDEO_ENTRYPOINT_MC
73 enum pipe_video_picture_structure
75 PIPE_VIDEO_PICTURE_STRUCTURE_FIELD_TOP,
76 PIPE_VIDEO_PICTURE_STRUCTURE_FIELD_BOTTOM,
77 PIPE_VIDEO_PICTURE_STRUCTURE_FRAME
80 #endif /* PIPE_VIDEO_ENUMS_H */