Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
10a49284
Commit
10a49284
authored
Jul 25, 2012
by
Adrian Grange
Committed by
Gerrit Code Review
Jul 25, 2012
Browse files
Merge "Added const specifier to remove warning" into experimental
parents
505784ee
c9d343f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpxenc.c
View file @
10a49284
...
...
@@ -1399,7 +1399,7 @@ static int compare_img(vpx_image_t *img1, vpx_image_t *img2) {
int
main
(
int
argc
,
const
char
**
argv_
)
{
vpx_codec_ctx_t
encoder
;
const
char
*
in_fn
=
NULL
,
*
out_fn
=
NULL
,
*
stats_fn
=
NULL
;
const
char
*
in_fn
=
NULL
,
*
out_fn
=
NULL
,
*
stats_fn
=
NULL
;
int
i
;
FILE
*
infile
,
*
outfile
;
vpx_codec_enc_cfg_t
cfg
;
...
...
@@ -1407,7 +1407,7 @@ int main(int argc, const char **argv_) {
int
pass
,
one_pass_only
=
0
;
stats_io_t
stats
;
vpx_image_t
raw
;
struct
codec_item
*
codec
=
codecs
;
const
struct
codec_item
*
codec
=
codecs
;
int
frame_avail
,
got_data
;
struct
arg
arg
;
...
...
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