gstreamer/gst-libs/gst/vaapi/gstvaapiutils.h

52 lines
1.6 KiB
C
Raw Normal View History

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
*
* gstreamer-vaapi (C) 2010 Splitted-Desktop Systems
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
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 <va/va.h>
#include <glib/gtypes.h>
/** Debug output */
void vaapi_dprintf(const char *format, ...)
attribute_hidden;
/** Check VA status for success or print out an error */
int vaapi_check_status(VAStatus status, const char *msg)
attribute_hidden;
/** Return a string representation of a FOURCC */
const char *string_of_FOURCC(guint32 fourcc)
attribute_hidden;
/** 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;
guint get_PutSurface_flags_from_GstVaapiSurfaceRenderFlags(guint flags)
attribute_hidden;
2010-03-16 09:18:57 +00:00
#endif /* GST_VAAPI_UTILS_H */