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
49771833
Commit
49771833
authored
Sep 06, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a warning.
parent
a0c74ab4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
5 deletions
+10
-5
plugins/idct/idct.c
plugins/idct/idct.c
+2
-1
plugins/idct/idctaltivec.c
plugins/idct/idctaltivec.c
+2
-1
plugins/idct/idctclassic.c
plugins/idct/idctclassic.c
+2
-1
plugins/idct/idctmmx.c
plugins/idct/idctmmx.c
+2
-1
plugins/idct/idctmmxext.c
plugins/idct/idctmmxext.c
+2
-1
No files found.
plugins/idct/idct.c
View file @
49771833
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* idct.c : C IDCT module
* idct.c : C IDCT module
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: idct.c,v 1.1
5 2001/09/05 16:07:49
massiot Exp $
* $Id: idct.c,v 1.1
6 2001/09/06 10:19:18
massiot Exp $
*
*
* Author: Gal Hendryckx <jimmy@via.ecp.fr>
* Author: Gal Hendryckx <jimmy@via.ecp.fr>
*
*
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
#include "defs.h"
#include "defs.h"
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "config.h"
#include "common.h"
#include "common.h"
...
...
plugins/idct/idctaltivec.c
View file @
49771833
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* idctaltivec.c : Altivec IDCT module
* idctaltivec.c : Altivec IDCT module
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: idctaltivec.c,v 1.1
2 2001/09/05 16:07:49
massiot Exp $
* $Id: idctaltivec.c,v 1.1
3 2001/09/06 10:19:18
massiot Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
*
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
#include "defs.h"
#include "defs.h"
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "config.h"
#include "common.h"
#include "common.h"
...
...
plugins/idct/idctclassic.c
View file @
49771833
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* idctclassic.c : Classic IDCT module
* idctclassic.c : Classic IDCT module
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: idctclassic.c,v 1.1
5 2001/09/05 16:07:49
massiot Exp $
* $Id: idctclassic.c,v 1.1
6 2001/09/06 10:19:18
massiot Exp $
*
*
* Authors: Gal Hendryckx <jimmy@via.ecp.fr>
* Authors: Gal Hendryckx <jimmy@via.ecp.fr>
*
*
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
#include "defs.h"
#include "defs.h"
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "config.h"
#include "common.h"
#include "common.h"
...
...
plugins/idct/idctmmx.c
View file @
49771833
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* idctmmx.c : MMX IDCT module
* idctmmx.c : MMX IDCT module
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: idctmmx.c,v 1.1
7 2001/09/05 16:07:49
massiot Exp $
* $Id: idctmmx.c,v 1.1
8 2001/09/06 10:19:18
massiot Exp $
*
*
* Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Michel Lespinasse <walken@zoy.org>
* Michel Lespinasse <walken@zoy.org>
...
@@ -34,6 +34,7 @@
...
@@ -34,6 +34,7 @@
#include "defs.h"
#include "defs.h"
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "config.h"
#include "common.h"
#include "common.h"
...
...
plugins/idct/idctmmxext.c
View file @
49771833
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* idctmmxext.c : MMX EXT IDCT module
* idctmmxext.c : MMX EXT IDCT module
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: idctmmxext.c,v 1.1
4 2001/09/05 16:07:49
massiot Exp $
* $Id: idctmmxext.c,v 1.1
5 2001/09/06 10:19:18
massiot Exp $
*
*
* Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Michel Lespinasse <walken@zoy.org>
* Michel Lespinasse <walken@zoy.org>
...
@@ -34,6 +34,7 @@
...
@@ -34,6 +34,7 @@
#include "defs.h"
#include "defs.h"
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "config.h"
#include "common.h"
#include "common.h"
...
...
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