OSDN Git Service

tests/api/api-seek-test: Fix use of uinitialized value
authorMichael Niedermayer <michael@niedermayer.cc>
Tue, 6 Dec 2016 13:08:39 +0000 (14:08 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Tue, 6 Dec 2016 14:41:31 +0000 (15:41 +0100)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tests/api/api-seek-test.c

index 8117df4..9544dfb 100644 (file)
@@ -129,7 +129,7 @@ static int compute_crc_of_packets(AVFormatContext *fmt_ctx, int video_stream,
                     av_log(NULL, AV_LOG_ERROR, "Can't copy image to buffer\n");
                     return number_of_written_bytes;
                 }
-                if ((fr->pts > ts_end) && (!no_seeking))
+                if ((!no_seeking) && (fr->pts > ts_end))
                     break;
                 crc = av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes);
                 printf("%10"PRId64", 0x%08lx\n", fr->pts, crc);