Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
adaa274f
Commit
adaa274f
authored
Sep 19, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests/utils: make arguments const that arent changed
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
6edd6a4f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
utils.c
tests/utils.c
+3
-3
No files found.
tests/utils.c
View file @
adaa274f
...
@@ -35,12 +35,12 @@
...
@@ -35,12 +35,12 @@
} while (0)
} while (0)
static
void
rgb24_to_yuv420p
(
unsigned
char
*
lum
,
unsigned
char
*
cb
,
static
void
rgb24_to_yuv420p
(
unsigned
char
*
lum
,
unsigned
char
*
cb
,
unsigned
char
*
cr
,
unsigned
char
*
src
,
unsigned
char
*
cr
,
const
unsigned
char
*
src
,
int
width
,
int
height
)
int
width
,
int
height
)
{
{
int
wrap
,
wrap3
,
x
,
y
;
int
wrap
,
wrap3
,
x
,
y
;
int
r
,
g
,
b
,
r1
,
g1
,
b1
;
int
r
,
g
,
b
,
r1
,
g1
,
b1
;
unsigned
char
*
p
;
const
unsigned
char
*
p
;
wrap
=
width
;
wrap
=
width
;
wrap3
=
width
*
3
;
wrap3
=
width
*
3
;
...
@@ -104,7 +104,7 @@ static void rgb24_to_yuv420p(unsigned char *lum, unsigned char *cb,
...
@@ -104,7 +104,7 @@ static void rgb24_to_yuv420p(unsigned char *lum, unsigned char *cb,
#define DEFAULT_NB_PICT 50
#define DEFAULT_NB_PICT 50
static
void
pgmyuv_save
(
const
char
*
filename
,
int
w
,
int
h
,
static
void
pgmyuv_save
(
const
char
*
filename
,
int
w
,
int
h
,
unsigned
char
*
rgb_tab
)
const
unsigned
char
*
rgb_tab
)
{
{
FILE
*
f
;
FILE
*
f
;
int
i
,
h2
,
w2
;
int
i
,
h2
,
w2
;
...
...
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