summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/rbcodec/codecs/flac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/codecs/flac.c b/lib/rbcodec/codecs/flac.c
index 3c5545df08..3390c24a2c 100644
--- a/lib/rbcodec/codecs/flac.c
+++ b/lib/rbcodec/codecs/flac.c
@@ -352,7 +352,7 @@ static bool flac_seek(FLACContext* fc, uint32_t target_sample) {
352 unsigned unparseable_count; 352 unsigned unparseable_count;
353 bool got_a_frame = false; 353 bool got_a_frame = false;
354 for(unparseable_count = 0; !got_a_frame 354 for(unparseable_count = 0; !got_a_frame
355 && unparseable_count < 10; unparseable_count++) { 355 && unparseable_count < 30; unparseable_count++) {
356 if(frame_sync(fc)) 356 if(frame_sync(fc))
357 got_a_frame = true; 357 got_a_frame = true;
358 } 358 }