Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 119594 Details for
Bug 176689
xine fails to play musepack file
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
don't let mpgaudio demuxer handle musepack
xine-musepack.patch (text/plain), 804 bytes, created by
Bram Verweij
on 2007-05-18 13:49:54 UTC
(
hide
)
Description:
don't let mpgaudio demuxer handle musepack
Filename:
MIME Type:
Creator:
Bram Verweij
Created:
2007-05-18 13:49:54 UTC
Size:
804 bytes
patch
obsolete
>diff -Naur xine-lib-1.1.4-old/src/demuxers/demux_mpgaudio.c xine-lib-1.1.4/src/demuxers/demux_mpgaudio.c >--- xine-lib-1.1.4-old/src/demuxers/demux_mpgaudio.c 2007-01-19 01:26:40.000000000 +0100 >+++ xine-lib-1.1.4/src/demuxers/demux_mpgaudio.c 2007-05-18 14:02:12.000000000 +0200 >@@ -63,6 +61,7 @@ > #define AVI_TAG FOURCC_TAG('A', 'V', 'I', ' ') > #define CDXA_TAG FOURCC_TAG('C', 'D', 'X', 'A') > #define MPEG_MARKER FOURCC_TAG( 0x00, 0x00, 0x01, 0xBA ) >+#define MUSEPACK_TAG FOURCC_TAG('M', 'P', '+', 0x07) > > > /* Xing header stuff */ >@@ -530,6 +530,11 @@ > > for (offset = 0; (offset + 4) < buflen; offset++) { > >+ if (BE_32(buf) == MUSEPACK_TAG) { >+ lprintf("muspack file\n"); >+ return 0; >+ } >+ > if (parse_frame_header(&frame, buf + offset)) { > size_t size = frame.size; >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 176689
:
119594
|
120855