1
mirror of https://github.com/mpv-player/mpv synced 2024-07-31 16:29:58 +02:00

Create a separate codecs.conf entry for Tremor and use it if MPlayer is

with Tremor support instead of libvorbis. Previously MPlayer would show
the same output on the console when decoding with libvorbis and Tremor.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28014 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-11-24 08:31:44 +00:00
parent 17aebba77f
commit 5351098826
2 changed files with 13 additions and 0 deletions

View File

@ -3491,6 +3491,15 @@ audiocodec vorbis
driver libvorbis
dll "libvorbis"
audiocodec tremor
info "OggVorbis audio decoder"
status working
comment "OggVorbis driver using Tremor"
fourcc vrbs
format 0x566F
driver tremor
dll "tremor"
audiocodec vorbisacm
info "OggVorbis ACM"
status working

View File

@ -12,7 +12,11 @@
static ad_info_t info =
{
"Ogg/Vorbis audio decoder",
#ifdef CONFIG_TREMOR
"tremor",
#else
"libvorbis",
#endif
"Felix Buenemann, A'rpi",
"libvorbis",
""