Commit f40487c2 authored by Måns Rullgård's avatar Måns Rullgård

s/u_char/uint8_t/

Originally committed as revision 4124 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 17929c04
......@@ -45,9 +45,9 @@ X264_log(void *p, int level, const char *fmt, va_list args)
static int
encode_nals(u_char *buf, int size, x264_nal_t *nals, int nnal)
encode_nals(uint8_t *buf, int size, x264_nal_t *nals, int nnal)
{
u_char *p = buf;
uint8_t *p = buf;
int i;
for(i = 0; i < nnal; i++){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment