summaryrefslogtreecommitdiffstats
path: root/meta-multimedia/recipes-multimedia/gstreamer/files/display.patch
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2017-04-27 11:04:51 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2017-08-31 10:18:33 +0200
commitec9e5ed06256ad92c818474cdb490dc0d3a0d0a3 (patch)
treee16d2a838f4561d5538928a58f805e5f1373225a /meta-multimedia/recipes-multimedia/gstreamer/files/display.patch
parent6775acb048dabd624c5c8197b683aba45ed91569 (diff)
downloadmeta-openembedded-ec9e5ed06256ad92c818474cdb490dc0d3a0d0a3.tar.gz
recipes: remove blacklisted recipes
* as PNBLACKLIST message says, these recipes are blacklisted for long time and nobody showed any interest to fix them * remove all unused .patch and .inc files as well Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia/gstreamer/files/display.patch')
-rw-r--r--meta-multimedia/recipes-multimedia/gstreamer/files/display.patch60
1 files changed, 0 insertions, 60 deletions
diff --git a/meta-multimedia/recipes-multimedia/gstreamer/files/display.patch b/meta-multimedia/recipes-multimedia/gstreamer/files/display.patch
deleted file mode 100644
index 61b0e6c87e..0000000000
--- a/meta-multimedia/recipes-multimedia/gstreamer/files/display.patch
+++ /dev/null
@@ -1,60 +0,0 @@
1Upstream-Status: Backport
2Signed-off-by: Ross Burton <ross.burton@intel.com>
3
4From 3e46d2e501da68d929bb5f26900a292a5fc04a1f Mon Sep 17 00:00:00 2001
5From: Stefan Westerfeld <stefan@space.twc.de>
6Date: Mon, 23 Apr 2012 03:10:22 +0200
7Subject: [PATCH] Fix time display updates (broken by introduction of quiet
8 mode).
9
10---
11 src/gst123.cc | 1 +
12 src/msg.cc | 7 +++++++
13 src/msg.h | 1 +
14 3 files changed, 9 insertions(+)
15
16diff --git a/src/gst123.cc b/src/gst123.cc
17index 20e91e5..ce5876d 100644
18--- a/src/gst123.cc
19+++ b/src/gst123.cc
20@@ -640,6 +640,7 @@ cb_print_position (gpointer *data)
21 else
22 blanks += " ";
23 Msg::print ("%s%s\r", status.c_str(), blanks.c_str());
24+ Msg::flush();
25 }
26
27 /* call me again */
28diff --git a/src/msg.cc b/src/msg.cc
29index 547cd90..33cada2 100644
30--- a/src/msg.cc
31+++ b/src/msg.cc
32@@ -41,6 +41,13 @@ print (const char *format, ...)
33 }
34 }
35
36+void
37+flush()
38+{
39+ if (!Options::the().quiet)
40+ fflush (stdout);
41+}
42+
43 }
44
45 }
46diff --git a/src/msg.h b/src/msg.h
47index e0ced24..5bebac0 100644
48--- a/src/msg.h
49+++ b/src/msg.h
50@@ -27,6 +27,7 @@ namespace Msg
51 {
52
53 void print (const char *format, ...);
54+void flush();
55
56 }
57
58--
591.7.9.5
60