]> git.sesse.net Git - vlc/blobdiff - modules/misc/dummy/renderer.c
* modules/misc/dummy/renderer.c:
[vlc] / modules / misc / dummy / renderer.c
index 456b89b4b3491385031a648880595e23dc541e9f..fa00430fdf9ac54f496f09282b017b3d02047676 100644 (file)
@@ -1,42 +1,43 @@
-/*****************************************************************************\r
- * renderer.c : dummy text rendering functions\r
- *****************************************************************************\r
- * Copyright (C) 2000, 2001 VideoLAN\r
- * $Id: renderer.c,v 1.1 2003/07/14 22:25:13 sigmunau Exp $\r
- *\r
- * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>\r
- *\r
- * This program is free software; you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation; either version 2 of the License, or\r
- * (at your option) any later version.\r
- * \r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
- *****************************************************************************/\r
-\r
-#include <vlc/vlc.h>\r
-#include <vlc/vout.h>\r
-\r
-static int  AddText   ( vout_thread_t *, char *, text_style_t *, int, \r
-                       int, int, mtime_t, mtime_t );\r
-\r
-int E_(OpenRenderer)( vlc_object_t *p_this )\r
-{\r
-    vout_thread_t *p_vout = (vout_thread_t *)p_this;\r
-    p_vout->pf_add_string = AddText;\r
-    return VLC_SUCCESS;\r
-}\r
-\r
-static int  AddText   ( vout_thread_t *p_vout, char *psz_string,\r
-                       text_style_t *p_style , int i_flags, int i_x_margin,\r
-                       int i_y_margin, mtime_t i_start, mtime_t i_stop )\r
-{\r
-    return VLC_SUCCESS;\r
-}\r
+/*****************************************************************************
+ * renderer.c : dummy text rendering functions
+ *****************************************************************************
+ * Copyright (C) 2000, 2001 VideoLAN
+ * $Id: renderer.c,v 1.2 2003/12/04 16:49:43 sam Exp $
+ *
+ * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ *****************************************************************************/
+
+#include <vlc/vlc.h>
+#include <vlc/vout.h>
+
+static int  AddText   ( vout_thread_t *, byte_t *, text_style_t *, int,
+                        int, int, mtime_t, mtime_t );
+
+int E_(OpenRenderer)( vlc_object_t *p_this )
+{
+    vout_thread_t *p_vout = (vout_thread_t *)p_this;
+    p_vout->pf_add_string = AddText;
+    return VLC_SUCCESS;
+}
+
+static int  AddText   ( vout_thread_t *p_vout, byte_t *psz_string,
+                        text_style_t *p_style , int i_flags, int i_x_margin,
+                        int i_y_margin, mtime_t i_start, mtime_t i_stop )
+{
+    return VLC_SUCCESS;
+}
+