Mercurial > mplayer.hg
changeset 8946:9821db5b213f
1000l, this clips!! IMO rg_scale nonsense should be removed with
tremor anyway since people using tremor want max performance!
author | rfelker |
---|---|
date | Mon, 13 Jan 2003 19:18:26 +0000 |
parents | e96921e6418b |
children | 1c8e98dba92f |
files | libmpcodecs/ad_libvorbis.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/ad_libvorbis.c Mon Jan 13 14:53:51 2003 +0000 +++ b/libmpcodecs/ad_libvorbis.c Mon Jan 13 19:18:26 2003 +0000 @@ -133,7 +133,7 @@ if(ov->rg_scale > 15.) ov->rg_scale = 15.; #ifdef TREMOR - ov->rg_scale_int = (int)(ov->rg_scale*128.f); + ov->rg_scale_int = (int)(ov->rg_scale*64.f); #endif mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbis: Bitstream is %d channel%s, %dHz, %dbit/s %cBR\n",(int)ov->vi.channels,ov->vi.channels>1?"s":"",(int)ov->vi.rate,(int)ov->vi.bitrate_nominal, (ov->vi.bitrate_lower!=ov->vi.bitrate_nominal)||(ov->vi.bitrate_upper!=ov->vi.bitrate_nominal)?'V':'C'); @@ -212,7 +212,7 @@ #ifdef TREMOR ogg_int32_t *mono=pcm[i]; for(j=0;j<bout;j++){ - int val=(mono[j]*ov->rg_scale_int)>>(9+7); + int val=(mono[j]*ov->rg_scale_int)>>(9+6); #else float *mono=pcm[i]; for(j=0;j<bout;j++){