Commit 99800d92 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Vorbisenc: use unsigned for i_channels

parent 21fe00fa
...@@ -712,7 +712,7 @@ struct encoder_sys_t ...@@ -712,7 +712,7 @@ struct encoder_sys_t
int i_last_block_size; int i_last_block_size;
int i_samples_delay; int i_samples_delay;
int i_channels; unsigned int i_channels;
/* /*
** Channel reordering ** Channel reordering
...@@ -850,7 +850,7 @@ static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf ) ...@@ -850,7 +850,7 @@ static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
ogg_packet oggpacket; ogg_packet oggpacket;
block_t *p_block, *p_chain = NULL; block_t *p_block, *p_chain = NULL;
float **buffer; float **buffer;
int i; unsigned int i;
unsigned int j; unsigned int j;
mtime_t i_pts = p_aout_buf->i_pts - mtime_t i_pts = p_aout_buf->i_pts -
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment