diff options
author | Rene Wagner <rw@handhelds.org> | 2005-08-24 15:56:20 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-24 15:56:20 +0000 |
commit | 7106374e696b7d9f7e03702950352b5191ffa556 (patch) | |
tree | 63af839ae8d38514e4b7f828f50ba24ba1a38072 /packages/vlc/vlc-gpe-0.8.1/vlc-tremor.patch | |
parent | 3cee44785f25fba935f6e7b875ac7809d88e799b (diff) |
vlc-gpe: make 0.8.1 work with more recent tremor API. patch courtesy of Philipp Zabel. fixes Bug #205.
Diffstat (limited to 'packages/vlc/vlc-gpe-0.8.1/vlc-tremor.patch')
-rw-r--r-- | packages/vlc/vlc-gpe-0.8.1/vlc-tremor.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/vlc/vlc-gpe-0.8.1/vlc-tremor.patch b/packages/vlc/vlc-gpe-0.8.1/vlc-tremor.patch new file mode 100644 index 0000000000..2a5a92463c --- /dev/null +++ b/packages/vlc/vlc-gpe-0.8.1/vlc-tremor.patch @@ -0,0 +1,14 @@ +--- vlc-0.8.1/modules/codec/vorbis.c.orig 2005-08-05 19:57:05 +0200 ++++ vlc-0.8.1/modules/codec/vorbis.c 2005-08-05 20:01:22 +0200 +@@ -481,7 +481,11 @@ + #endif + + if( p_oggpacket->bytes && ++#ifdef MODULE_NAME_IS_tremor ++ vorbis_synthesis( &p_sys->vb, p_oggpacket, 1 ) == 0 ) ++#else + vorbis_synthesis( &p_sys->vb, p_oggpacket ) == 0 ) ++#endif + vorbis_synthesis_blockin( &p_sys->vd, &p_sys->vb ); + + /* **pp_pcm is a multichannel float vector. In stereo, for |