mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
48 lines
1.5 KiB
C
48 lines
1.5 KiB
C
/*
|
|
* vaapi_utils.h - VA-API utilities
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#ifndef VAAPI_UTILS_H
|
|
#define VAAPI_UTILS_H
|
|
|
|
#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;
|
|
|
|
#endif /* VAAPI_UTILS_H */
|