diff options
author | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2012-01-30 11:05:17 +0100 |
---|---|---|
committer | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2012-02-01 23:56:35 +0100 |
commit | 99ded53e66af1903f1d58ffbc24404d435a6de84 (patch) | |
tree | c17561b7d60043bca57fc0b42c5fe8ccfbeea95b /src/i965_decoder.h | |
parent | fe140f03726c603f4802e4977621b46f03fe4d3c (diff) | |
download | vaapi-intel-driver-99ded53e66af1903f1d58ffbc24404d435a6de84.tar.gz vaapi-intel-driver-99ded53e66af1903f1d58ffbc24404d435a6de84.tar.bz2 vaapi-intel-driver-99ded53e66af1903f1d58ffbc24404d435a6de84.zip |
Factor out type definitions (GenFrameStore, GenBuffer).
Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
Diffstat (limited to 'src/i965_decoder.h')
-rw-r--r-- | src/i965_decoder.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/i965_decoder.h b/src/i965_decoder.h new file mode 100644 index 0000000..0e69e14 --- /dev/null +++ b/src/i965_decoder.h @@ -0,0 +1,46 @@ +/* + * Copyright (C) 2012 Intel Corporation + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sub license, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice (including the + * next paragraph) shall be included in all copies or substantial portions + * of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR + * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +#ifndef I965_DECODER_H +#define I965_DECODER_H + +#include <stdint.h> +#include <va/va.h> +#include <intel_bufmgr.h> + +#define MAX_GEN_REFERENCE_FRAMES 16 + +typedef struct gen_frame_store GenFrameStore; +struct gen_frame_store { + VASurfaceID surface_id; + int frame_store_id; +}; + +typedef struct gen_buffer GenBuffer; +struct gen_buffer { + dri_bo *bo; + int valid; +}; + +#endif /* I965_DECODER_H */ |