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

Merge commit '8191f960'

* commit '8191f960':
  examples/decode_video: constify the AVCodec instance
Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents 58f24adc 8191f960
...@@ -79,7 +79,7 @@ static int decode_write_frame(const char *outfilename, AVCodecContext *avctx, ...@@ -79,7 +79,7 @@ static int decode_write_frame(const char *outfilename, AVCodecContext *avctx,
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
const char *filename, *outfilename; const char *filename, *outfilename;
AVCodec *codec; const AVCodec *codec;
AVCodecContext *c= NULL; AVCodecContext *c= NULL;
int frame_count; int frame_count;
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