1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-13 10:39:08 +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
commit dcdd52101f

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;