summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-11-08 18:41:09 +0100
committerGravatar waker <wakeroid@gmail.com>2012-11-08 18:41:09 +0100
commiteb9b2a08d260a241b97e543ea8e313a1e7385637 (patch)
tree8b4c20c029214dbb8bd0a43ce33cad33427cbd06 /plugins
parent8df3668914951cdcf3f9c6be75e17a8c3d3c12d8 (diff)
aac: header validator will now check up to 4000 bytes instead of 2000
Diffstat (limited to 'plugins')
-rw-r--r--plugins/aac/aac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/aac/aac.c b/plugins/aac/aac.c
index ca0f391e..15e493ca 100644
--- a/plugins/aac/aac.c
+++ b/plugins/aac/aac.c
@@ -160,7 +160,7 @@ parse_aac_stream(DB_FILE *fp, int *psamplerate, int *pchannels, float *pduration
memmove (buf, buf+1, sizeof (buf)-1);
bufsize--;
// trace ("aac_sync fail, framepos: %d\n", framepos);
- if (deadbeef->ftell (fp) - initfpos > 2000) { // how many is enough to make sure?
+ if (deadbeef->ftell (fp) - initfpos > 4000) { // how many is enough to make sure?
break;
}
framepos++;