From 5952b8da0b7f65dfa23991e71737e0abdaeb339c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 6 Dec 2016 14:16:02 +0100 Subject: tests/api/api-seek-test: Silence compiler warnings about uninitialized variables Signed-off-by: Michael Niedermayer --- tests/api/api-seek-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api/api-seek-test.c b/tests/api/api-seek-test.c index 9544dfb298..799187f93e 100644 --- a/tests/api/api-seek-test.c +++ b/tests/api/api-seek-test.c @@ -243,7 +243,7 @@ static int seek_test(const char *input_filename, const char *start, const char * return AVERROR(ENOMEM); } - result = compute_crc_of_packets(fmt_ctx, video_stream, ctx, fr, i, j, 1); + result = compute_crc_of_packets(fmt_ctx, video_stream, ctx, fr, 0, 0, 1); if (result != 0) return -1; -- cgit v1.2.3