diff yuv4mpeg.c @ 65:a58a8a53eb46 libavformat

* UINTX -> uintx_t INTX -> intx_t
author kabi
date Tue, 11 Feb 2003 16:35:48 +0000
parents 01e35bb2689a
children 25062c9b1f86
line wrap: on
line diff
--- a/yuv4mpeg.c	Mon Feb 10 09:35:32 2003 +0000
+++ b/yuv4mpeg.c	Tue Feb 11 16:35:48 2003 +0000
@@ -101,7 +101,7 @@
 }
 
 static int yuv4_write_packet(AVFormatContext *s, int stream_index,
-                             UINT8 *buf, int size, int force_pts)
+                             uint8_t *buf, int size, int force_pts)
 {
     AVStream *st = s->streams[stream_index];
     ByteIOContext *pb = &s->pb;
@@ -109,7 +109,7 @@
     int width, height;
     int i, m;
     char buf1[20];
-    UINT8 *ptr, *ptr1, *ptr2;
+    uint8_t *ptr, *ptr1, *ptr2;
 
     picture = (AVPicture *)buf;