Commit 10a49284 authored by Adrian Grange's avatar Adrian Grange Committed by Gerrit Code Review
Browse files

Merge "Added const specifier to remove warning" into experimental

Showing with 2 additions and 2 deletions
...@@ -1399,7 +1399,7 @@ static int compare_img(vpx_image_t *img1, vpx_image_t *img2) { ...@@ -1399,7 +1399,7 @@ static int compare_img(vpx_image_t *img1, vpx_image_t *img2) {
int main(int argc, const char **argv_) { int main(int argc, const char **argv_) {
vpx_codec_ctx_t encoder; 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; int i;
FILE *infile, *outfile; FILE *infile, *outfile;
vpx_codec_enc_cfg_t cfg; vpx_codec_enc_cfg_t cfg;
...@@ -1407,7 +1407,7 @@ int main(int argc, const char **argv_) { ...@@ -1407,7 +1407,7 @@ int main(int argc, const char **argv_) {
int pass, one_pass_only = 0; int pass, one_pass_only = 0;
stats_io_t stats; stats_io_t stats;
vpx_image_t raw; vpx_image_t raw;
struct codec_item *codec = codecs; const struct codec_item *codec = codecs;
int frame_avail, got_data; int frame_avail, got_data;
struct arg arg; struct arg arg;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment