Skip to content
Snippets Groups Projects
Commit 5952b8da authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

tests/api/api-seek-test: Silence compiler warnings about uninitialized variables

parent 108db375
No related branches found
No related tags found
No related merge requests found
...@@ -243,7 +243,7 @@ static int seek_test(const char *input_filename, const char *start, const char * ...@@ -243,7 +243,7 @@ static int seek_test(const char *input_filename, const char *start, const char *
return AVERROR(ENOMEM); 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) if (result != 0)
return -1; return -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment