2010-01-25 16:15:01 +00:00
|
|
|
/*
|
2010-03-16 09:15:48 +00:00
|
|
|
* gstvaapiutils.h - VA-API utilities
|
2010-01-25 16:15:01 +00:00
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2012-01-16 10:03:51 +00:00
|
|
|
* Copyright (C) 2011-2012 Intel Corporation
|
2010-01-25 16:15:01 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1
|
|
|
|
* of the License, or (at your option) any later version.
|
2010-01-25 16:15:01 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-01-25 16:15:01 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2010-05-03 07:07:27 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2010-01-25 16:15:01 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
2010-01-25 16:15:01 +00:00
|
|
|
*/
|
|
|
|
|
2010-03-16 09:18:57 +00:00
|
|
|
#ifndef GST_VAAPI_UTILS_H
|
|
|
|
#define GST_VAAPI_UTILS_H
|
2010-01-25 16:15:01 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <glib/gtypes.h>
|
|
|
|
|
2010-03-24 16:17:49 +00:00
|
|
|
#ifdef GST_VAAPI_USE_OLD_VAAPI_0_29
|
|
|
|
# include <va.h>
|
|
|
|
#else
|
|
|
|
# include <va/va.h>
|
|
|
|
#endif
|
|
|
|
|
2010-01-25 16:15:01 +00:00
|
|
|
/** Check VA status for success or print out an error */
|
2010-03-30 12:55:27 +00:00
|
|
|
gboolean
|
|
|
|
vaapi_check_status(VAStatus status, const char *msg)
|
2010-01-25 16:15:01 +00:00
|
|
|
attribute_hidden;
|
|
|
|
|
2011-08-04 15:29:41 +00:00
|
|
|
/** Maps VA buffer */
|
|
|
|
void *
|
|
|
|
vaapi_map_buffer(VADisplay dpy, VABufferID buf_id)
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
/** Unmaps VA buffer */
|
|
|
|
void
|
|
|
|
vaapi_unmap_buffer(VADisplay dpy, VABufferID buf_id, void **pbuf)
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
/** Creates and maps VA buffer */
|
|
|
|
void *
|
|
|
|
vaapi_create_buffer(
|
|
|
|
VADisplay dpy,
|
|
|
|
VAContextID ctx,
|
|
|
|
int type,
|
|
|
|
unsigned int size,
|
|
|
|
VABufferID *buf_id
|
|
|
|
) attribute_hidden;
|
|
|
|
|
|
|
|
/** Destroy VA buffer */
|
|
|
|
void
|
|
|
|
vaapi_destroy_buffer(VADisplay dpy, VABufferID *buf_id)
|
|
|
|
attribute_hidden;
|
|
|
|
|
2010-01-25 16:15:01 +00:00
|
|
|
/** Return a string representation of a VAProfile */
|
|
|
|
const char *string_of_VAProfile(VAProfile profile)
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
/** Return a string representation of a VAEntrypoint */
|
|
|
|
const char *string_of_VAEntrypoint(VAEntrypoint entrypoint)
|
|
|
|
attribute_hidden;
|
|
|
|
|
2010-03-30 12:55:27 +00:00
|
|
|
guint
|
|
|
|
from_GstVaapiSurfaceRenderFlags(guint flags)
|
2010-03-21 08:38:17 +00:00
|
|
|
attribute_hidden;
|
|
|
|
|
2010-03-30 12:55:27 +00:00
|
|
|
guint
|
|
|
|
to_GstVaapiSurfaceStatus(guint va_flags)
|
2010-03-30 08:11:50 +00:00
|
|
|
attribute_hidden;
|
|
|
|
|
2010-03-16 09:18:57 +00:00
|
|
|
#endif /* GST_VAAPI_UTILS_H */
|