Browse Source

libxvid: Add const qualifier to silence compiler warning.

libavcodec/libxvidff.c:752: warning: initialization discards qualifiers from pointer target type
tags/n0.9
Diego Biurrun 14 years ago
parent
commit
d8dbe20241
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/libxvidff.c

+ 1
- 1
libavcodec/libxvidff.c View File

@@ -749,7 +749,7 @@ static int xvid_ff_2pass_before(struct xvid_context *ref,
static int xvid_ff_2pass_after(struct xvid_context *ref,
xvid_plg_data_t *param) {
char *log = ref->twopassbuffer;
char *frame_types = " ipbs";
const char *frame_types = " ipbs";
char frame_type;

/* Quick bounds check */


Loading…
Cancel
Save