1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-12 13:44:56 +02:00

Misc fixes in goom, freetype and warning in last.fm

This commit is contained in:
Jean-Baptiste Kempf 2009-08-20 11:23:31 +02:00
parent 34df809782
commit 9ce57311af
3 changed files with 8 additions and 4 deletions

View File

@ -465,6 +465,8 @@ static void Run( intf_thread_t *p_intf )
static int PlayingChange( vlc_object_t *p_this, const char *psz_var,
vlc_value_t oldval, vlc_value_t newval, void *p_data )
{
VLC_UNUSED( oldval );
intf_thread_t *p_intf = ( intf_thread_t* ) p_data;
intf_sys_t *p_sys = p_intf->p_sys;
input_thread_t *p_input = ( input_thread_t* )p_this;

View File

@ -49,7 +49,9 @@
#include FT_GLYPH_H
#define FT_FLOOR(X) ((X & -64) >> 6)
#define FT_CEIL(X) (((X + 63) & -64) >> 6)
#define FT_MulFix(v, s) (((v)*(s))>>16)
#ifndef FT_MulFix
#define FT_MulFix(v, s) (((v)*(s))>>16)
#endif
#ifdef __APPLE__
#define DEFAULT_FONT "/System/Library/Fonts/LucidaGrande.dfont"

View File

@ -102,7 +102,7 @@ typedef struct
vlc_cond_t wait;
/* Audio properties */
int i_channels;
unsigned i_channels;
/* Audio samples queue */
block_t *pp_blocks[MAX_BLOCKS];
@ -274,8 +274,8 @@ static int FillBuffer( int16_t *p_data, int *pi_data,
if( !p_this->i_blocks ) return VLC_EGENERIC;
p_block = p_this->pp_blocks[0];
i_samples = __MIN( 512 - *pi_data, p_block->i_buffer /
sizeof(float) / p_this->i_channels );
i_samples = __MIN( (unsigned)(512 - *pi_data),
p_block->i_buffer / sizeof(float) / p_this->i_channels );
/* Date management */
if( p_block->i_pts > 0 &&