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

slitaz-base-files: typo
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Sep 12 03:41:56 2017 +0300 (2017-09-12)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gst0-plugins-bad/stuff/patches/fix-dfb-example.patch	Tue Sep 12 03:41:56 2017 +0300
     1.3 @@ -0,0 +1,22 @@
     1.4 +Fix dfb-example
     1.5 +
     1.6 +Order of inclusion gives a strange effect on the definition of
     1.7 +gst_debug_log. Swapping the include statements solve it.
     1.8 +
     1.9 +Not upstreamed since there will be no more updates to this version
    1.10 +of gst-plugins-bad.
    1.11 +
    1.12 +Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
    1.13 +---
    1.14 +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
    1.15 +--- gst-plugins-bad-0.10.23/ext/directfb/dfb-example.c	2011-12-11 19:49:11.000000000 +0100
    1.16 ++++ gst-plugins-bad-0.10.23.fixed/ext/directfb/dfb-example.c	2013-05-13 00:32:00.507469138 +0200
    1.17 +@@ -1,7 +1,7 @@
    1.18 + 
    1.19 +-#include <directfb.h>
    1.20 + #include <stdio.h>
    1.21 + #include <gst/gst.h>
    1.22 ++#include <directfb.h>
    1.23 + 
    1.24 + static IDirectFB *dfb = NULL;
    1.25 + static IDirectFBSurface *primary = NULL;