summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer')
-rw-r--r--apps/plugins/mpegplayer/audio_thread.c6
-rw-r--r--apps/plugins/mpegplayer/disk_buf.c6
-rw-r--r--apps/plugins/mpegplayer/disk_buf.h6
-rw-r--r--apps/plugins/mpegplayer/idct_arm.S6
-rw-r--r--apps/plugins/mpegplayer/idct_coldfire.S6
-rw-r--r--apps/plugins/mpegplayer/motion_comp_coldfire_s.S6
-rw-r--r--apps/plugins/mpegplayer/mpeg_linkedlist.c6
-rw-r--r--apps/plugins/mpegplayer/mpeg_linkedlist.h6
-rw-r--r--apps/plugins/mpegplayer/mpeg_misc.c6
-rw-r--r--apps/plugins/mpegplayer/mpeg_misc.h6
-rw-r--r--apps/plugins/mpegplayer/mpeg_parser.c6
-rw-r--r--apps/plugins/mpegplayer/mpeg_stream.h6
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.c6
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.h6
-rw-r--r--apps/plugins/mpegplayer/parser.h6
-rw-r--r--apps/plugins/mpegplayer/pcm_output.c6
-rw-r--r--apps/plugins/mpegplayer/pcm_output.h6
-rw-r--r--apps/plugins/mpegplayer/stream_mgr.c6
-rw-r--r--apps/plugins/mpegplayer/stream_mgr.h6
-rw-r--r--apps/plugins/mpegplayer/stream_thread.h6
-rw-r--r--apps/plugins/mpegplayer/video_out_rockbox.c6
-rw-r--r--apps/plugins/mpegplayer/video_thread.c6
22 files changed, 88 insertions, 44 deletions
diff --git a/apps/plugins/mpegplayer/audio_thread.c b/apps/plugins/mpegplayer/audio_thread.c
index 1fcd1424ff..838dcad699 100644
--- a/apps/plugins/mpegplayer/audio_thread.c
+++ b/apps/plugins/mpegplayer/audio_thread.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/disk_buf.c b/apps/plugins/mpegplayer/disk_buf.c
index 7ecf51c168..f37797bc9e 100644
--- a/apps/plugins/mpegplayer/disk_buf.c
+++ b/apps/plugins/mpegplayer/disk_buf.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/disk_buf.h b/apps/plugins/mpegplayer/disk_buf.h
index 04b4675768..b6399c81d1 100644
--- a/apps/plugins/mpegplayer/disk_buf.h
+++ b/apps/plugins/mpegplayer/disk_buf.h
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/idct_arm.S b/apps/plugins/mpegplayer/idct_arm.S
index 21f47bb34a..7de2d7f881 100644
--- a/apps/plugins/mpegplayer/idct_arm.S
+++ b/apps/plugins/mpegplayer/idct_arm.S
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2007 by Michael Sevakis 10 * Copyright (C) 2007 by Michael Sevakis
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/idct_coldfire.S b/apps/plugins/mpegplayer/idct_coldfire.S
index aa9a75b2e7..abc54b16cb 100644
--- a/apps/plugins/mpegplayer/idct_coldfire.S
+++ b/apps/plugins/mpegplayer/idct_coldfire.S
@@ -10,8 +10,10 @@
10 * Copyright (C) 2007 Jens Arnold 10 * Copyright (C) 2007 Jens Arnold
11 * Based on the work of Karim Boucher and Rani Hod 11 * Based on the work of Karim Boucher and Rani Hod
12 * 12 *
13 * All files in this archive are subject to the GNU General Public License. 13 * This program is free software; you can redistribute it and/or
14 * See the file COPYING in the source tree root for full license agreement. 14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
15 * 17 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied. 19 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/motion_comp_coldfire_s.S b/apps/plugins/mpegplayer/motion_comp_coldfire_s.S
index ecb46c91be..55d87cb708 100644
--- a/apps/plugins/mpegplayer/motion_comp_coldfire_s.S
+++ b/apps/plugins/mpegplayer/motion_comp_coldfire_s.S
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2007 Jens Arnold 10 * Copyright (C) 2007 Jens Arnold
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/mpeg_linkedlist.c b/apps/plugins/mpegplayer/mpeg_linkedlist.c
index 74cb2cb34a..f2d01ee493 100644
--- a/apps/plugins/mpegplayer/mpeg_linkedlist.c
+++ b/apps/plugins/mpegplayer/mpeg_linkedlist.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/mpeg_linkedlist.h b/apps/plugins/mpegplayer/mpeg_linkedlist.h
index 17123cc9ca..d4f8305d7d 100644
--- a/apps/plugins/mpegplayer/mpeg_linkedlist.h
+++ b/apps/plugins/mpegplayer/mpeg_linkedlist.h
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/mpeg_misc.c b/apps/plugins/mpegplayer/mpeg_misc.c
index f5ecb6d6c8..fd564a49c3 100644
--- a/apps/plugins/mpegplayer/mpeg_misc.c
+++ b/apps/plugins/mpegplayer/mpeg_misc.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/mpeg_misc.h b/apps/plugins/mpegplayer/mpeg_misc.h
index 6c5a41655b..aeaba56d44 100644
--- a/apps/plugins/mpegplayer/mpeg_misc.h
+++ b/apps/plugins/mpegplayer/mpeg_misc.h
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/mpeg_parser.c b/apps/plugins/mpegplayer/mpeg_parser.c
index 617b7fe9f9..54a6f23d92 100644
--- a/apps/plugins/mpegplayer/mpeg_parser.c
+++ b/apps/plugins/mpegplayer/mpeg_parser.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/mpeg_stream.h b/apps/plugins/mpegplayer/mpeg_stream.h
index 0c850f072d..26fdaf07b4 100644
--- a/apps/plugins/mpegplayer/mpeg_stream.h
+++ b/apps/plugins/mpegplayer/mpeg_stream.h
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c
index 5b478d0bf7..c775a14f65 100644
--- a/apps/plugins/mpegplayer/mpegplayer.c
+++ b/apps/plugins/mpegplayer/mpegplayer.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/mpegplayer.h b/apps/plugins/mpegplayer/mpegplayer.h
index 571c28883d..4ee30b7b00 100644
--- a/apps/plugins/mpegplayer/mpegplayer.h
+++ b/apps/plugins/mpegplayer/mpegplayer.h
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/parser.h b/apps/plugins/mpegplayer/parser.h
index 892a8a14d2..4c58d2b6ec 100644
--- a/apps/plugins/mpegplayer/parser.h
+++ b/apps/plugins/mpegplayer/parser.h
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/pcm_output.c b/apps/plugins/mpegplayer/pcm_output.c
index e17f635f72..e901336c10 100644
--- a/apps/plugins/mpegplayer/pcm_output.c
+++ b/apps/plugins/mpegplayer/pcm_output.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/pcm_output.h b/apps/plugins/mpegplayer/pcm_output.h
index 94ca6eed3b..9335235daa 100644
--- a/apps/plugins/mpegplayer/pcm_output.h
+++ b/apps/plugins/mpegplayer/pcm_output.h
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/stream_mgr.c b/apps/plugins/mpegplayer/stream_mgr.c
index c9601b8593..ae1ff512ea 100644
--- a/apps/plugins/mpegplayer/stream_mgr.c
+++ b/apps/plugins/mpegplayer/stream_mgr.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/stream_mgr.h b/apps/plugins/mpegplayer/stream_mgr.h
index f577e5c2ce..71a3fd51c6 100644
--- a/apps/plugins/mpegplayer/stream_mgr.h
+++ b/apps/plugins/mpegplayer/stream_mgr.h
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/stream_thread.h b/apps/plugins/mpegplayer/stream_thread.h
index ddacb4bd9a..d6e42d274f 100644
--- a/apps/plugins/mpegplayer/stream_thread.h
+++ b/apps/plugins/mpegplayer/stream_thread.h
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/video_out_rockbox.c b/apps/plugins/mpegplayer/video_out_rockbox.c
index 547768887a..450a8bc7a1 100644
--- a/apps/plugins/mpegplayer/video_out_rockbox.c
+++ b/apps/plugins/mpegplayer/video_out_rockbox.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * mpegplayer video output routines 10 * mpegplayer video output routines
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/mpegplayer/video_thread.c b/apps/plugins/mpegplayer/video_thread.c
index 6e7c9aea15..91f08a5a66 100644
--- a/apps/plugins/mpegplayer/video_thread.c
+++ b/apps/plugins/mpegplayer/video_thread.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2007 Michael Sevakis 12 * Copyright (c) 2007 Michael Sevakis
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.