1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

Merge commit '90265814f993098d79b0a0f40745ecdb403fbf56'

* commit '90265814f993098d79b0a0f40745ecdb403fbf56':
  examples/decode_audio: constify the AVCodec instance

Merged-by: Clément Bœsch <u@pkh.me>
This commit is contained in:
Clément Bœsch
2017-03-29 13:45:51 +02:00

View File

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