changeset 66:ad9bcf041e8e libavformat

Looks like this one was forgotten in the INT -> int_t move
author mmu_man
date Thu, 13 Feb 2003 00:28:36 +0000
parents a58a8a53eb46
children 22e4d9d88e25
files beosaudio.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/beosaudio.cpp	Tue Feb 11 16:35:48 2003 +0000
+++ b/beosaudio.cpp	Thu Feb 13 00:28:36 2003 +0000
@@ -51,7 +51,7 @@
     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_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;