diff options
author | François Revol <revol@free.fr> | 2003-02-13 00:28:36 +0000 |
---|---|---|
committer | François Revol <revol@free.fr> | 2003-02-13 00:28:36 +0000 |
commit | d271b84bf7e5ab29d3f45a73392050ff4f424c64 (patch) | |
tree | f83ccce441694b12c3b6f681034ba225253d52d9 | |
parent | 3f07e60546c70ff5b78131266b3ab38917ae0f5a (diff) | |
download | ffmpeg-d271b84bf7e5ab29d3f45a73392050ff4f424c64.tar.gz |
Looks like this one was forgotten in the INT -> int_t move
Originally committed as revision 1584 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/beosaudio.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/beosaudio.cpp b/libavformat/beosaudio.cpp index d2a52800e6..3294575027 100644 --- a/libavformat/beosaudio.cpp +++ b/libavformat/beosaudio.cpp @@ -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; |