mirror of https://git.ffmpeg.org/ffmpeg.git
examples/decode_audio: constify the AVCodec instance
This commit is contained in:
parent
f5df897c4b
commit
90265814f9
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue