diff options
Diffstat (limited to 'audio')
-rw-r--r-- | audio/splay/patches/patch-ah | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/splay/patches/patch-ah b/audio/splay/patches/patch-ah new file mode 100644 index 00000000000..5ca9133736d --- /dev/null +++ b/audio/splay/patches/patch-ah @@ -0,0 +1,11 @@ +--- mpegsound/mpeglayer3.cc-orig Sat May 24 11:34:12 1997 ++++ mpegsound/mpeglayer3.cc Tue May 12 13:10:28 1998 +@@ -40,7 +40,7 @@ + a=(((unsigned char)buffer[offset])<<8) | ((unsigned char)buffer[offset+1]); + } + #else +- a=((unsigned short *)(buffer+((bixindex>>3)&(WINDOWSIZE-1)))); ++ a=((unsigned short *)(buffer+((bitindex>>3)&(WINDOWSIZE-1)))); + #endif + + a<<=(bitindex&7); |