summaryrefslogtreecommitdiff
path: root/tests/api/api-band-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/api/api-band-test.c')
-rw-r--r--tests/api/api-band-test.c9
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;