wok-next view gst0-plugins-bad/stuff/patches/fix-dfb-example.patch @ rev 19829

Rename jack-audio-connection-kit -> jack; add jack2; up gst0-plugins-base, gst0-plugins-good, gst0-plugins-bad, gst0-plugins-full, and other gst0-plugins-* dependencies.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Aug 04 16:04:04 2017 +0300 (2017-08-04)
parents
children
line source
1 Fix dfb-example
3 Order of inclusion gives a strange effect on the definition of
4 gst_debug_log. Swapping the include statements solve it.
6 Not upstreamed since there will be no more updates to this version
7 of gst-plugins-bad.
9 Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
10 ---
11 diff -rup gst-plugins-bad-0.10.23/ext/directfb/dfb-example.c gst-plugins-bad-0.10.23.fixed/ext/directfb/dfb-example.c
12 --- gst-plugins-bad-0.10.23/ext/directfb/dfb-example.c 2011-12-11 19:49:11.000000000 +0100
13 +++ gst-plugins-bad-0.10.23.fixed/ext/directfb/dfb-example.c 2013-05-13 00:32:00.507469138 +0200
14 @@ -1,7 +1,7 @@
16 -#include <directfb.h>
17 #include <stdio.h>
18 #include <gst/gst.h>
19 +#include <directfb.h>
21 static IDirectFB *dfb = NULL;
22 static IDirectFBSurface *primary = NULL;