Add initial VA display abstraction.
[profile/ivi/gstreamer-vaapi.git] / gst-libs / gst / vaapi / vaapi_utils.h
1 /*
2  *  vaapi_utils.h - VA-API utilities
3  *
4  *  gstreamer-vaapi (C) 2010 Splitted-Desktop Systems
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
19  */
20
21 #ifndef VAAPI_UTILS_H
22 #define VAAPI_UTILS_H
23
24 #include "config.h"
25 #include <va/va.h>
26 #include <glib/gtypes.h>
27
28 /** Debug output */
29 void vaapi_dprintf(const char *format, ...)
30     attribute_hidden;
31
32 /** Check VA status for success or print out an error */
33 int vaapi_check_status(VAStatus status, const char *msg)
34     attribute_hidden;
35
36 /** Return a string representation of a FOURCC */
37 const char *string_of_FOURCC(guint32 fourcc)
38     attribute_hidden;
39
40 /** Return a string representation of a VAProfile */
41 const char *string_of_VAProfile(VAProfile profile)
42     attribute_hidden;
43
44 /** Return a string representation of a VAEntrypoint */
45 const char *string_of_VAEntrypoint(VAEntrypoint entrypoint)
46     attribute_hidden;
47
48 #endif /* VAAPI_UTILS_H */