diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-06 14:16:02 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-06 15:41:32 +0100 |
commit | 5952b8da0b7f65dfa23991e71737e0abdaeb339c (patch) | |
tree | 07b6c4b53504c0f24b96f0a043f0daf074d83b3d | |
parent | 108db37586e4e5bb5ba0ea3b927d72bc4f25939b (diff) | |
download | ffmpeg-5952b8da0b7f65dfa23991e71737e0abdaeb339c.tar.gz |
tests/api/api-seek-test: Silence compiler warnings about uninitialized variables
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | tests/api/api-seek-test.c | 2 |
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; |