diff options
author | Zaheer Abbas Merali <zaheerm@gentoo.org> | 2005-06-08 21:54:54 +0000 |
---|---|---|
committer | Zaheer Abbas Merali <zaheerm@gentoo.org> | 2005-06-08 21:54:54 +0000 |
commit | 11ecb3395f2fc596b34f5aa0cb390c0c9e5acf18 (patch) | |
tree | dc429d13d6f7ae2e7f89486f3bbb0205e10432e9 /media-libs/gst-plugins/files | |
parent | mask amrnb, new plugin added in 0.8.9 (diff) | |
download | gentoo-2-11ecb3395f2fc596b34f5aa0cb390c0c9e5acf18.tar.gz gentoo-2-11ecb3395f2fc596b34f5aa0cb390c0c9e5acf18.tar.bz2 gentoo-2-11ecb3395f2fc596b34f5aa0cb390c0c9e5acf18.zip |
add fix for raw pcm inside mov
(Portage version: 2.0.51.19)
Diffstat (limited to 'media-libs/gst-plugins/files')
-rw-r--r-- | media-libs/gst-plugins/files/digest-gst-plugins-0.8.9-r1 | 1 | ||||
-rw-r--r-- | media-libs/gst-plugins/files/gst-plugins-0.8.9-qtdemux-fixrawpcm.patch | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/media-libs/gst-plugins/files/digest-gst-plugins-0.8.9-r1 b/media-libs/gst-plugins/files/digest-gst-plugins-0.8.9-r1 new file mode 100644 index 000000000000..346795226dc3 --- /dev/null +++ b/media-libs/gst-plugins/files/digest-gst-plugins-0.8.9-r1 @@ -0,0 +1 @@ +MD5 663461ef7b16e9bd7f2605e4ed0db5ba gst-plugins-0.8.9.tar.bz2 2356958 diff --git a/media-libs/gst-plugins/files/gst-plugins-0.8.9-qtdemux-fixrawpcm.patch b/media-libs/gst-plugins/files/gst-plugins-0.8.9-qtdemux-fixrawpcm.patch new file mode 100644 index 000000000000..b6c96799042c --- /dev/null +++ b/media-libs/gst-plugins/files/gst-plugins-0.8.9-qtdemux-fixrawpcm.patch @@ -0,0 +1,16 @@ +Index: qtdemux.c +=================================================================== +RCS file: /cvs/gstreamer/gst-plugins/gst/qtdemux/qtdemux.c,v +retrieving revision 1.80.2.10 +diff -u -r1.80.2.10 qtdemux.c +--- qtdemux.c 3 Jun 2005 13:43:58 -0000 1.80.2.10 ++++ qtdemux.c 8 Jun 2005 11:14:53 -0000 +@@ -2877,7 +2877,7 @@ + _codec ("Raw 8-bit PCM audio"); + /* FIXME */ + return gst_caps_from_string ("audio/x-raw-int, " +- "width = (int) 8, " "depth = (int) 8, " "signed = (boolean) true"); ++ "width = (int) 8, " "depth = (int) 8, " "signed = (boolean) false"); + case GST_MAKE_FOURCC ('t', 'w', 'o', 's'): + _codec ("Raw 16-bit PCM audio"); + /* FIXME */ |