mirror of
https://github.com/mpv-player/mpv
synced 2024-12-19 05:15:12 +00: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:
parent
17aebba77f
commit
5351098826
@ -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
|
||||
|
@ -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",
|
||||
""
|
||||
|
Loading…
Reference in New Issue
Block a user