[FFmpeg-cvslog] tests/api/api-seek-test: Silence compiler warnings about uninitialized variables
Michael Niedermayer
git at videolan.org
Tue Dec 6 17:43:55 EET 2016
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Tue Dec 6 14:16:02 2016 +0100| [5952b8da0b7f65dfa23991e71737e0abdaeb339c] | committer: Michael Niedermayer
tests/api/api-seek-test: Silence compiler warnings about uninitialized variables
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5952b8da0b7f65dfa23991e71737e0abdaeb339c
---
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 9544dfb..799187f 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;
More information about the ffmpeg-cvslog
mailing list