Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
9ad4cc80
Commit
9ad4cc80
authored
Sep 06, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various fixes for GCC 3.0.
parent
179acd06
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
9 deletions
+14
-9
plugins/idct/idctmmx.c
plugins/idct/idctmmx.c
+2
-2
plugins/idct/idctmmxext.c
plugins/idct/idctmmxext.c
+2
-2
plugins/motion/motion.c
plugins/motion/motion.c
+2
-1
plugins/motion/motion3dnow.c
plugins/motion/motion3dnow.c
+2
-1
plugins/motion/motionaltivec.c
plugins/motion/motionaltivec.c
+2
-1
plugins/motion/motionmmx.c
plugins/motion/motionmmx.c
+2
-1
plugins/motion/motionmmxext.c
plugins/motion/motionmmxext.c
+2
-1
No files found.
plugins/idct/idctmmx.c
View file @
9ad4cc80
...
...
@@ -2,7 +2,7 @@
* idctmmx.c : MMX IDCT module
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: idctmmx.c,v 1.1
8 2001/09/06 10:19:18
massiot Exp $
* $Id: idctmmx.c,v 1.1
9 2001/09/06 14:02:56
massiot Exp $
*
* Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Michel Lespinasse <walken@zoy.org>
...
...
@@ -409,7 +409,7 @@ static s32 rounder3[] ATTR_ALIGN(8) =
static
s32
rounder5
[]
ATTR_ALIGN
(
8
)
=
rounder
(
-
0
.
441341716183
);
// C3*(-C5/C4+C5-C3)/2
static
__inline__
void
IDCT
(
dctelem_t
*
p_block
)
static
void
IDCT
(
dctelem_t
*
p_block
)
{
static
dctelem_t
table04
[]
ATTR_ALIGN
(
16
)
=
table
(
22725
,
21407
,
19266
,
16384
,
12873
,
8867
,
4520
);
...
...
plugins/idct/idctmmxext.c
View file @
9ad4cc80
...
...
@@ -2,7 +2,7 @@
* idctmmxext.c : MMX EXT IDCT module
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: idctmmxext.c,v 1.1
5 2001/09/06 10:19:18
massiot Exp $
* $Id: idctmmxext.c,v 1.1
6 2001/09/06 14:02:56
massiot Exp $
*
* Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Michel Lespinasse <walken@zoy.org>
...
...
@@ -393,7 +393,7 @@ static s32 rounder3[] ATTR_ALIGN(8) =
static
s32
rounder5
[]
ATTR_ALIGN
(
8
)
=
rounder
(
-
0
.
441341716183
);
// C3*(-C5/C4+C5-C3)/2
static
__inline__
void
IDCT
(
dctelem_t
*
p_block
)
static
void
IDCT
(
dctelem_t
*
p_block
)
{
static
dctelem_t
table04
[]
ATTR_ALIGN
(
16
)
=
table
(
22725
,
21407
,
19266
,
16384
,
12873
,
8867
,
4520
);
...
...
plugins/motion/motion.c
View file @
9ad4cc80
...
...
@@ -2,7 +2,7 @@
* motion.c : C motion compensation module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: motion.c,v 1.
9 2001/08/22 17:21:45
massiot Exp $
* $Id: motion.c,v 1.
10 2001/09/06 14:02:56
massiot Exp $
*
* Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Michel Lespinasse <walken@zoy.org>
...
...
@@ -31,6 +31,7 @@
#include "defs.h"
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include "config.h"
#include "common.h"
/* boolean_t, byte_t */
...
...
plugins/motion/motion3dnow.c
View file @
9ad4cc80
...
...
@@ -2,7 +2,7 @@
* motion3dnow.c : 3DNow! motion compensation module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: motion3dnow.c,v 1.
2 2001/09/05 16:07:49
massiot Exp $
* $Id: motion3dnow.c,v 1.
3 2001/09/06 14:02:56
massiot Exp $
*
* Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Michel Lespinasse <walken@zoy.org>
...
...
@@ -31,6 +31,7 @@
#include "defs.h"
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include "config.h"
#include "common.h"
/* boolean_t, byte_t */
...
...
plugins/motion/motionaltivec.c
View file @
9ad4cc80
...
...
@@ -2,7 +2,7 @@
* motionaltivec.c : Altivec motion compensation module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: motionaltivec.c,v 1.
1 2001/09/05 16:07:49
massiot Exp $
* $Id: motionaltivec.c,v 1.
2 2001/09/06 14:02:56
massiot Exp $
*
* Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Paul Mackerras <paulus@linuxcare.com.au>
...
...
@@ -31,6 +31,7 @@
#include "defs.h"
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include "config.h"
#include "common.h"
/* boolean_t, byte_t */
...
...
plugins/motion/motionmmx.c
View file @
9ad4cc80
...
...
@@ -2,7 +2,7 @@
* motionmmx.c : MMX motion compensation module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: motionmmx.c,v 1.1
0 2001/08/22 17:21:45
massiot Exp $
* $Id: motionmmx.c,v 1.1
1 2001/09/06 14:02:56
massiot Exp $
*
* Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Michel Lespinasse <walken@zoy.org>
...
...
@@ -31,6 +31,7 @@
#include "defs.h"
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include "config.h"
#include "common.h"
/* boolean_t, byte_t */
...
...
plugins/motion/motionmmxext.c
View file @
9ad4cc80
...
...
@@ -2,7 +2,7 @@
* motionmmxext.c : MMX EXT motion compensation module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: motionmmxext.c,v 1.1
0 2001/08/22 17:21:45
massiot Exp $
* $Id: motionmmxext.c,v 1.1
1 2001/09/06 14:02:56
massiot Exp $
*
* Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Michel Lespinasse <walken@zoy.org>
...
...
@@ -31,6 +31,7 @@
#include "defs.h"
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include "config.h"
#include "common.h"
/* boolean_t, byte_t */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment