1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-18 04:30:03 +02:00

Merge commit 'e02524025bce2c8bf8b5bffd96479785c75a70d4'

* commit 'e02524025bce2c8bf8b5bffd96479785c75a70d4':
  examples/encode_video: 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 14:15:01 +02:00
commit e9bd457465

View File

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