Merge "Added const specifier to remove warning" into experimental

This commit is contained in:
Adrian Grange 2012-07-25 07:53:39 -07:00 committed by Gerrit Code Review
commit 10a492847f

View File

@ -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;