Commit b912506a authored by mru's avatar mru

s/u_char/uint8_t/


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4124 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e331d4f1
...@@ -45,9 +45,9 @@ X264_log(void *p, int level, const char *fmt, va_list args) ...@@ -45,9 +45,9 @@ X264_log(void *p, int level, const char *fmt, va_list args)
static int 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; int i;
for(i = 0; i < nnal; 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