summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dxr3ffmpeg.c19
-rw-r--r--dxr3ffmpeg.h23
-rw-r--r--dxr3i18n.c21
-rw-r--r--dxr3i18n.h21
-rw-r--r--dxr3memcpy.c21
-rw-r--r--dxr3memcpy.h21
-rw-r--r--dxr3tools.h21
7 files changed, 142 insertions, 5 deletions
diff --git a/dxr3ffmpeg.c b/dxr3ffmpeg.c
index e35319a..286b2f3 100644
--- a/dxr3ffmpeg.c
+++ b/dxr3ffmpeg.c
@@ -1,8 +1,21 @@
/*
- * dxr3audiodecoder.c:
+ * dxr3ffmpeg.c
*
- * See the main source file 'dxr3.c' for copyright information and
- * how to reach the author.
+ * Copyright (C) 2004 Christian Gmeiner
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
+ * 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
diff --git a/dxr3ffmpeg.h b/dxr3ffmpeg.h
index 7795f74..a96c553 100644
--- a/dxr3ffmpeg.h
+++ b/dxr3ffmpeg.h
@@ -1,3 +1,24 @@
+/*
+ * dxr3ffmpeg.h
+ *
+ * Copyright (C) 2004 Christian Gmeiner
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
+ * 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
#ifndef _DXR3_FFMPEG_H_
#define _DXR3_FFMPEG_H_
@@ -6,8 +27,6 @@ extern "C"
#include <avcodec.h>
};
-//#include <stdlib.h>
-//#include <stdint.h>
#include <string.h>
#include "dxr3singleton.h"
diff --git a/dxr3i18n.c b/dxr3i18n.c
index 92c63ee..68cf8c4 100644
--- a/dxr3i18n.c
+++ b/dxr3i18n.c
@@ -1,3 +1,24 @@
+/*
+ * dxr3i18n.c
+ *
+ * Copyright (C) 2004 Christian Gmeiner
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
+ * 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
#include "dxr3i18n.h"
const char *i18n_name = 0;
diff --git a/dxr3i18n.h b/dxr3i18n.h
index 990d2ee..e637151 100644
--- a/dxr3i18n.h
+++ b/dxr3i18n.h
@@ -1,3 +1,24 @@
+/*
+ * dxr3i18n.h
+ *
+ * Copyright (C) 2004 Christian Gmeiner
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
+ * 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
#ifndef _DXR3_I18N_H_
#define _DXR3_I18N_H_
diff --git a/dxr3memcpy.c b/dxr3memcpy.c
index 1866c95..a8814b6 100644
--- a/dxr3memcpy.c
+++ b/dxr3memcpy.c
@@ -1,4 +1,25 @@
/*
+ * dxr3memcpy.c
+ *
+ * Copyright (C) 2004 Christian Gmeiner
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
+ * 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ *
+ * Orgianal from xine:
+ *
* Copyright (C) 2001-2003 the xine project
*
* This file is part of xine, a free video player.
diff --git a/dxr3memcpy.h b/dxr3memcpy.h
index 8ec863d..71bb673 100644
--- a/dxr3memcpy.h
+++ b/dxr3memcpy.h
@@ -1,3 +1,24 @@
+/*
+ * dxr3memcpy.h
+ *
+ * Copyright (C) 2004 Christian Gmeiner
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
+ * 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
/*****************************************************************************
* memcpy.h: functions and definitions of the MMX/MMX2/SSE optimized versions
* of memcpy
diff --git a/dxr3tools.h b/dxr3tools.h
index ee8f9e3..2f4b886 100644
--- a/dxr3tools.h
+++ b/dxr3tools.h
@@ -1,3 +1,24 @@
+/*
+ * dxr3tools.h
+ *
+ * Copyright (C) 2004 Christian Gmeiner
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
+ * 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
#ifndef _DXR3TOOLS_H_
#define _DXR3TOOLS_H_