Mercurial > libavformat.hg
comparison yuv.c @ 65:a58a8a53eb46 libavformat
* UINTX -> uintx_t INTX -> intx_t
author | kabi |
---|---|
date | Tue, 11 Feb 2003 16:35:48 +0000 |
parents | 3d52de18ecc3 |
children | 0fdc96c2f2fe |
comparison
equal
deleted
inserted
replaced
64:b0e0eb595e29 | 65:a58a8a53eb46 |
---|---|
95 static int yuv_write(ByteIOContext *pb2, AVImageInfo *info) | 95 static int yuv_write(ByteIOContext *pb2, AVImageInfo *info) |
96 { | 96 { |
97 ByteIOContext pb1, *pb; | 97 ByteIOContext pb1, *pb; |
98 char fname[1024], *p; | 98 char fname[1024], *p; |
99 int i, j, width, height; | 99 int i, j, width, height; |
100 UINT8 *ptr; | 100 uint8_t *ptr; |
101 URLContext *h; | 101 URLContext *h; |
102 static const char *ext = "YUV"; | 102 static const char *ext = "YUV"; |
103 | 103 |
104 /* XXX: hack hack */ | 104 /* XXX: hack hack */ |
105 h = url_fileno(pb2); | 105 h = url_fileno(pb2); |