diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-04-10 20:58:15 +0100 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-04-10 20:59:55 +0100 |
commit | 6f69f7a8bf6a0d013985578df2ef42ee6b1c7994 (patch) | |
tree | 0c2ec8349ff1763d5f48454b8b9f26374dbd80b0 /tests/api/api-band-test.c | |
parent | 60b75186b2c878b6257b43c8fcc0b1356ada218e (diff) | |
parent | 9200514ad8717c63f82101dc394f4378854325bf (diff) | |
download | ffmpeg-6f69f7a8bf6a0d013985578df2ef42ee6b1c7994.tar.gz |
Merge commit '9200514ad8717c63f82101dc394f4378854325bf'
* commit '9200514ad8717c63f82101dc394f4378854325bf':
lavf: replace AVStream.codec with AVStream.codecpar
This has been a HUGE effort from:
- Derek Buitenhuis <derek.buitenhuis@gmail.com>
- Hendrik Leppkes <h.leppkes@gmail.com>
- wm4 <nfxjfg@googlemail.com>
- Clément Bœsch <clement@stupeflix.com>
- James Almer <jamrial@gmail.com>
- Michael Niedermayer <michael@niedermayer.cc>
- Rostislav Pehlivanov <atomnuker@gmail.com>
Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'tests/api/api-band-test.c')
-rw-r--r-- | tests/api/api-band-test.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/api/api-band-test.c b/tests/api/api-band-test.c index 8644e7df9e..5ccba4f766 100644 --- a/tests/api/api-band-test.c +++ b/tests/api/api-band-test.c @@ -67,7 +67,8 @@ static void draw_horiz_band(AVCodecContext *ctx, const AVFrame *fr, int offset[4 static int video_decode(const char *input_filename) { AVCodec *codec = NULL; - AVCodecContext *origin_ctx = NULL, *ctx= NULL; + AVCodecContext *ctx= NULL; + AVCodecParameters *origin_par = NULL; uint8_t *byte_buffer = NULL; AVFrame *fr = NULL; AVPacket pkt; @@ -99,9 +100,9 @@ static int video_decode(const char *input_filename) return -1; } - origin_ctx = fmt_ctx->streams[video_stream]->codec; + origin_par = fmt_ctx->streams[video_stream]->codecpar; - codec = avcodec_find_decoder(origin_ctx->codec_id); + codec = avcodec_find_decoder(origin_par->codec_id); if (!codec) { av_log(NULL, AV_LOG_ERROR, "Can't find decoder\n"); return -1; @@ -113,7 +114,7 @@ static int video_decode(const char *input_filename) return AVERROR(ENOMEM); } - result = avcodec_copy_context(ctx, origin_ctx); + result = avcodec_parameters_to_context(ctx, origin_par); if (result) { av_log(NULL, AV_LOG_ERROR, "Can't copy decoder context\n"); return result; |