summaryrefslogtreecommitdiff
path: root/tests/api
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-12-06 14:16:02 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-12-06 15:41:32 +0100
commit5952b8da0b7f65dfa23991e71737e0abdaeb339c (patch)
tree07b6c4b53504c0f24b96f0a043f0daf074d83b3d /tests/api
parent108db37586e4e5bb5ba0ea3b927d72bc4f25939b (diff)
downloadffmpeg-5952b8da0b7f65dfa23991e71737e0abdaeb339c.tar.gz
tests/api/api-seek-test: Silence compiler warnings about uninitialized variables
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tests/api')
-rw-r--r--tests/api/api-seek-test.c2
1 files changed, 1 insertions, 1 deletions
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;