examples/encode_video: constify the AVCodec instance

This commit is contained in:
Anton Khirnov 2016-10-20 11:03:20 +02:00
parent 7b1f03477f
commit e02524025b
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
int main(int argc, char **argv)
{
const char *filename;
AVCodec *codec;
const AVCodec *codec;
AVCodecContext *c= NULL;
int i, ret, x, y, got_output;
FILE *f;