comparison src/madplug/plugin.c @ 2820:4151640654ae

16 tries arn't enough, we need 256 when the ID3 tag includes pictures.
author Jonathan Schleifer <js-audacious@webkeks.org>
date Sun, 13 Jul 2008 15:54:39 +0200
parents 324f950774cb
children 5389a40f3566
comparison
equal deleted inserted replaced
2814:a03d670e8752 2820:4151640654ae
486 next = state; 486 next = state;
487 state = STATE_REBUFFER; 487 state = STATE_REBUFFER;
488 } 488 }
489 break; 489 break;
490 } 490 }
491 } while (state != STATE_FATAL && tries < 16); 491 } while (state != STATE_FATAL && tries < 256);
492 /* Give up after 16 failed resync attempts or fatal errors */ 492 /* Give up after 256 failed resync attempts or fatal errors */
493 493
494 g_message("Rejecting %s (not an MP3 file?)", filename); 494 g_message("Rejecting %s (not an MP3 file?)", filename);
495 return 0; 495 return 0;
496 } 496 }
497 497