diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-02-11 16:35:48 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-02-11 16:35:48 +0000 |
commit | 0c1a9edad463bd6e22b30c19b700b099c7093fc1 (patch) | |
tree | d16ccbe29c8dbfc2cdc4e92cac31b22c181ed940 /libavformat/yuv.c | |
parent | 4596673c062e3834b6d31d1e8e210b64d74ce26b (diff) | |
download | ffmpeg-0c1a9edad463bd6e22b30c19b700b099c7093fc1.tar.gz |
* UINTX -> uintx_t INTX -> intx_t
Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/yuv.c')
-rw-r--r-- | libavformat/yuv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/yuv.c b/libavformat/yuv.c index 5d09585cdc..61a4590175 100644 --- a/libavformat/yuv.c +++ b/libavformat/yuv.c @@ -97,7 +97,7 @@ static int yuv_write(ByteIOContext *pb2, AVImageInfo *info) ByteIOContext pb1, *pb; char fname[1024], *p; int i, j, width, height; - UINT8 *ptr; + uint8_t *ptr; URLContext *h; static const char *ext = "YUV"; |