Commit b0018cc3 authored by Laurent Aimar's avatar Laurent Aimar

* all: removed all u8/u16/.... occurences.

parent fa341942
......@@ -2,7 +2,7 @@
* input_ext-dec.c: services to the decoders
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: input_ext-dec.c,v 1.45 2003/03/04 13:21:19 massiot Exp $
* $Id: input_ext-dec.c,v 1.46 2003/08/17 20:39:08 fenrir Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
......@@ -253,7 +253,7 @@ void BitstreamNextDataPacket( bit_stream_t * p_bit_stream )
* UnalignedShowBits : places i_bits bits into the bit buffer, even when
* not aligned on a word boundary
*****************************************************************************/
u32 UnalignedShowBits( bit_stream_t * p_bit_stream, unsigned int i_bits )
uint32_t UnalignedShowBits( bit_stream_t * p_bit_stream, unsigned int i_bits )
{
/* We just fill in the bit buffer. */
while( (unsigned int)p_bit_stream->fifo.i_available < i_bits )
......@@ -333,9 +333,9 @@ u32 UnalignedShowBits( bit_stream_t * p_bit_stream, unsigned int i_bits )
* them from the buffer, even when the bit stream is not aligned on a word
* boundary
*****************************************************************************/
u32 UnalignedGetBits( bit_stream_t * p_bit_stream, unsigned int i_bits )
uint32_t UnalignedGetBits( bit_stream_t * p_bit_stream, unsigned int i_bits )
{
u32 i_result;
uint32_t i_result;
i_result = p_bit_stream->fifo.buffer
>> (8 * sizeof(WORD_TYPE) - i_bits);
......
......@@ -2,7 +2,7 @@
* input_programs.c: es_descriptor_t, pgrm_descriptor_t management
*****************************************************************************
* Copyright (C) 1999-2002 VideoLAN
* $Id: input_programs.c,v 1.117 2003/08/13 01:45:13 gbazin Exp $
* $Id: input_programs.c,v 1.118 2003/08/17 20:39:08 fenrir Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
......@@ -195,7 +195,7 @@ pgrm_descriptor_t * input_FindProgram( input_thread_t * p_input,
* This program descriptor will be referenced in the given stream descriptor
*****************************************************************************/
pgrm_descriptor_t * input_AddProgram( input_thread_t * p_input,
u16 i_pgrm_id, size_t i_data_len )
uint16_t i_pgrm_id, size_t i_data_len )
{
/* Where to add the pgrm */
pgrm_descriptor_t * p_pgrm = malloc( sizeof(pgrm_descriptor_t) );
......@@ -587,7 +587,7 @@ es_descriptor_t * input_FindES( input_thread_t * p_input, uint16_t i_es_id )
* alone (PSI ?)
*****************************************************************************/
es_descriptor_t * input_AddES( input_thread_t * p_input,
pgrm_descriptor_t * p_pgrm, u16 i_es_id,
pgrm_descriptor_t * p_pgrm, uint16_t i_es_id,
int i_category, char const *psz_desc,
size_t i_data_len )
{
......
......@@ -2,7 +2,7 @@
* iso_lang.c: function to decode language code (in dvd or a52 for instance).
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: iso_lang.c,v 1.8 2002/11/13 20:51:05 sam Exp $
* $Id: iso_lang.c,v 1.9 2003/08/17 20:39:08 fenrir Exp $
*
* Author: Stphane Borel <stef@via.ecp.fr>
* Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr>
......@@ -51,10 +51,10 @@ static const iso639_lang_t unknown_language =
* DecodeLanguage: gives the long language name from the two-letter
* ISO-639 code
*****************************************************************************/
const char * DecodeLanguage( u16 i_code )
const char * DecodeLanguage( uint16_t i_code )
{
const iso639_lang_t * p_lang;
u8 psz_code[3];
uint8_t psz_code[3];
psz_code[0] = i_code >> 8;
psz_code[1] = i_code & 0xff;
......
......@@ -2,7 +2,7 @@
* video_text.h : text manipulation functions
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: video_text.h,v 1.8 2002/06/01 12:32:02 sam Exp $
* $Id: video_text.h,v 1.9 2003/08/17 20:39:08 fenrir Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
......@@ -41,5 +41,6 @@ void vout_TextSize ( vout_font_t *p_font, int i_style,
int *pi_width, int *pi_height );
void vout_Print ( vout_font_t *p_font, byte_t *p_pic,
int i_bytes_per_pixel, int i_bytes_per_line,
u32, u32, u32, int, const char *, int );
uint32_t, uint32_t, uint32_t,
int, const char *, int );
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