Commit e9bd4574 authored by Clément Bœsch's avatar Clément Bœsch

Merge commit 'e0252402'

* commit 'e0252402':
  examples/encode_video: constify the AVCodec instance
Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents 925ce244 e0252402
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
const char *filename, *codec_name; const char *filename, *codec_name;
AVCodec *codec; const AVCodec *codec;
AVCodecContext *c= NULL; AVCodecContext *c= NULL;
int i, ret, x, y, got_output; int i, ret, x, y, got_output;
FILE *f; FILE *f;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment