Commit 3f0ff558 authored by mmu_man's avatar mmu_man

Looks like this one was forgotten in the INT -> int_t move


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1584 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 668f1400
......@@ -51,7 +51,7 @@ typedef struct {
int frame_size; /* in bytes ! */
CodecID codec_id;
int flip_left : 1;
UINT8 buffer[AUDIO_BUFFER_SIZE];
uint8_t buffer[AUDIO_BUFFER_SIZE];
int buffer_ptr;
int pipefd; /* the other end of the pipe */
/* ring buffer */
......@@ -268,7 +268,7 @@ static int audio_write_header(AVFormatContext *s1)
}
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 = (AudioData *)s1->priv_data;
int len, ret;
......
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