view tremor/window.h @ 34262:aa8061d708b9

OSD fractions: do not round up decimals Currently if the PTS timestamps come in as something like this: 1.95 1.997 2.03 The OSD fraction is displayed like this: 1.95 1.00 2.03 which is less than desirable. Patch by Roger Pack, rogerdpack2 (gmail) http://lists.mplayerhq.hu/pipermail/mplayer-dev-eng/2011-November/069448.html
author cigaes
date Tue, 15 Nov 2011 17:57:23 +0000
parents 8631a3803289
children
line wrap: on
line source

/********************************************************************
 *                                                                  *
 * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE.   *
 *                                                                  *
 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
 *                                                                  *
 * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002    *
 * BY THE Xiph.Org FOUNDATION http://www.xiph.org/                  *
 *                                                                  *
 ********************************************************************

 function: window functions

 ********************************************************************/

#ifndef _V_WINDOW_
#define _V_WINDOW_

extern const void *_vorbis_window(int type,int left);
extern void _vorbis_apply_window(ogg_int32_t *d,const void *window[2],
				 long *blocksizes,
				 int lW,int W,int nW);


#endif