summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2003-03-07 17:07:14 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2003-03-07 17:07:14 +0000
commitd4c31ea5db2c0bd1517389baff3472f3d70236ee (patch)
tree5f24fde6c0267b9804f8469e6a648d287d3812b1
parentdb3f4c8b4a3146c3d24f497fb588f195b086f17a (diff)
downloadxine-lib-d4c31ea5db2c0bd1517389baff3472f3d70236ee.tar.gz
xine-lib-d4c31ea5db2c0bd1517389baff3472f3d70236ee.tar.bz2
I mixed up #ifdef and #if
CVS patchset: 4362 CVS date: 2003/03/07 17:07:14
-rw-r--r--src/dxr3/dxr3_decode_spu.c4
-rw-r--r--src/dxr3/dxr3_decode_video.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/dxr3/dxr3_decode_spu.c b/src/dxr3/dxr3_decode_spu.c
index 3be43746e..2f57be82a 100644
--- a/src/dxr3/dxr3_decode_spu.c
+++ b/src/dxr3/dxr3_decode_spu.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: dxr3_decode_spu.c,v 1.31 2003/02/25 14:33:40 mroi Exp $
+ * $Id: dxr3_decode_spu.c,v 1.32 2003/03/07 17:07:15 mroi Exp $
*/
/* dxr3 spu decoder plugin.
@@ -559,7 +559,7 @@ static int dxr3_present(xine_stream_t *stream)
present = (strcmp(vo_class->get_identifier(vo_class), DXR3_VO_ID) == 0);
}
}
-#ifdef LOG_SPU
+#if LOG_SPU
printf("dxr3_decode_spu: dxr3 %s\n", present ? "present" : "not present");
#endif
return present;
diff --git a/src/dxr3/dxr3_decode_video.c b/src/dxr3/dxr3_decode_video.c
index d103275d5..8a7b91e79 100644
--- a/src/dxr3/dxr3_decode_video.c
+++ b/src/dxr3/dxr3_decode_video.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: dxr3_decode_video.c,v 1.31 2003/02/23 14:15:58 mroi Exp $
+ * $Id: dxr3_decode_video.c,v 1.32 2003/03/07 17:07:14 mroi Exp $
*/
/* dxr3 video decoder plugin.
@@ -608,7 +608,7 @@ static int dxr3_present(xine_stream_t *stream)
present = (strcmp(vo_class->get_identifier(vo_class), DXR3_VO_ID) == 0);
}
}
-#ifdef LOG_VID
+#if LOG_VID
printf("dxr3_decode_video: dxr3 %s\n", present ? "present" : "not present");
#endif
return present;