Mercurial > libavformat.hg
diff audio.c @ 65:a58a8a53eb46 libavformat
* UINTX -> uintx_t INTX -> intx_t
| author | kabi |
|---|---|
| date | Tue, 11 Feb 2003 16:35:48 +0000 |
| parents | 01d48dc59dab |
| children | 3d92f793fd67 |
line wrap: on
line diff
--- a/audio.c Mon Feb 10 09:35:32 2003 +0000 +++ b/audio.c Tue Feb 11 16:35:48 2003 +0000 @@ -37,7 +37,7 @@ int frame_size; /* in bytes ! */ int codec_id; int flip_left : 1; - UINT8 buffer[AUDIO_BLOCK_SIZE]; + uint8_t buffer[AUDIO_BLOCK_SIZE]; int buffer_ptr; } AudioData; @@ -165,7 +165,7 @@ } static int audio_write_packet(AVFormatContext *s1, int stream_index, - UINT8 *buf, int size, int force_pts) + uint8_t *buf, int size, int force_pts) { AudioData *s = s1->priv_data; int len, ret;
