examples/decode_audio: constify the AVCodec instance

This commit is contained in:
Anton Khirnov 2016-10-19 21:56:22 +02:00
parent f5df897c4b
commit 90265814f9
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@
int main(int argc, char **argv)
{
const char *outfilename, *filename;
AVCodec *codec;
const AVCodec *codec;
AVCodecContext *c= NULL;
int len;
FILE *f, *outfile;