~ubuntu-branches/ubuntu/vivid/gstreamer-vaapi/vivid

« back to all changes in this revision

Viewing changes to gst-libs/gst/vaapi/gstvaapiutils_x11.h

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2014-08-06 23:56:00 UTC
  • mfrom: (0.1.4 sid) (1.1.3)
  • Revision ID: package-import@ubuntu.com-20140806235600-fg1kcmiu67k315q5
Tags: 0.5.9-2
* Remove spurious build-deps: libva-drm1, libavcodec-dev. (Closes: #757283)
* Drop Build-Depends-Indep and build docs unconditionally on all archs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#define GST_VAAPI_UTILS_X11_H
27
27
 
28
28
#include "config.h"
 
29
#include "libgstvaapi_priv_check.h"
29
30
#include <X11/Xlib.h>
30
31
#include <glib.h>
31
32
 
32
33
G_GNUC_INTERNAL
33
34
void
34
 
x11_trap_errors(void);
 
35
x11_trap_errors (void);
35
36
 
36
37
G_GNUC_INTERNAL
37
38
int
38
 
x11_untrap_errors(void);
 
39
x11_untrap_errors (void);
39
40
 
40
41
G_GNUC_INTERNAL
41
42
Window
42
 
x11_create_window(Display *dpy, guint w, guint h, Visual *vis, Colormap cmap);
 
43
x11_create_window (Display * dpy, guint w, guint h, Visual * vis,
 
44
    Colormap cmap);
43
45
 
44
46
G_GNUC_INTERNAL
45
47
gboolean
46
 
x11_get_geometry(
47
 
    Display    *dpy,
48
 
    Drawable    drawable,
49
 
    gint       *px,
50
 
    gint       *py,
51
 
    guint      *pwidth,
52
 
    guint      *pheight,
53
 
    guint      *pdepth
54
 
);
 
48
x11_get_geometry (Display * dpy, Drawable drawable, gint * px, gint * py,
 
49
    guint * pwidth, guint * pheight, guint * pdepth);
55
50
 
56
51
#endif /* GST_VAAPI_UTILS_X11_H */