summaryrefslogtreecommitdiff
path: root/tests/api/api-seek-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/api/api-seek-test.c')
-rw-r--r--tests/api/api-seek-test.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/api/api-seek-test.c b/tests/api/api-seek-test.c
index 135b972440..df47a5fbdb 100644
--- a/tests/api/api-seek-test.c
+++ b/tests/api/api-seek-test.c
@@ -174,7 +174,8 @@ static long int read_seek_range(const char *string_with_number)
static int seek_test(const char *input_filename, const char *start, const char *end)
{
AVCodec *codec = NULL;
- AVCodecContext *origin_ctx = NULL, *ctx= NULL;
+ AVCodecContext *ctx= NULL;
+ AVCodecParameters *origin_par = NULL;
AVFrame *fr = NULL;
AVFormatContext *fmt_ctx = NULL;
int video_stream;
@@ -210,9 +211,9 @@ static int seek_test(const char *input_filename, const char *start, const char *
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;
@@ -224,7 +225,7 @@ static int seek_test(const char *input_filename, const char *start, const char *
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;