summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2005-01-10 18:03:34 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2005-01-10 18:03:34 +0000
commit05d128326d940cc72302013f95dab862a536e06d (patch)
treec74f31f7e1a5c29a294c1c7dc54f625f7d8d2016
parent5cce85fffc1db054410f171c53ed0d356663fded (diff)
downloadxine-lib-05d128326d940cc72302013f95dab862a536e06d.tar.gz
xine-lib-05d128326d940cc72302013f95dab862a536e06d.tar.bz2
Assume that front ends can handle tabs (ffmpeg post-proc plugin).
CVS patchset: 7337 CVS date: 2005/01/10 18:03:34
-rw-r--r--ChangeLog1
-rwxr-xr-xsrc/post/planar/pp.c7
2 files changed, 2 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 31913081d..515089f55 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@ xine-lib (1.0.1)
* fixed compatibility with new libtool versions [bug #1094262]
* renamed input.http_no_proxy to media.network.http_no_proxy
* tightened no-proxy domain matching & added exact host match ('=' prefix)
+ * assume that front ends can handle tabs (ffmpeg pp plugin help text)
xine-lib (1.0)
* unbreak DXR3 plugin
diff --git a/src/post/planar/pp.c b/src/post/planar/pp.c
index 11b67dfd6..216fcc620 100755
--- a/src/post/planar/pp.c
+++ b/src/post/planar/pp.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: pp.c,v 1.6 2004/04/17 19:54:32 mroi Exp $
+ * $Id: pp.c,v 1.7 2005/01/10 18:03:41 dsalt Exp $
*
* plugin for ffmpeg libpostprocess
*/
@@ -123,11 +123,6 @@ static char * get_help (void) {
strcpy(help, help1);
strcat(help, pp_help);
strcat(help, help2);
-
- /* tab is not correctly displayed in xine-ui */
- for( s = help; *s; s++ )
- if( *s == '\t' )
- *s = ' ';
}
return help;
}