From: Jeff Lenk Date: Sat, 9 Jul 2011 01:33:58 +0000 (-0500) Subject: fix compiler error - equivalent X-Git-Tag: v1.2-rc1~108^2^2~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dab274da7887838ea90fec52c5d2b734ef50b210;p=thirdparty%2Ffreeswitch.git fix compiler error - equivalent --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 894974f001..aa737596bd 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -1019,7 +1019,7 @@ static void *SWITCH_THREAD_FUNC conference_video_thread_run(switch_thread_t *thr int y = *((int8_t *) vid_frame->data + 2) & 0xfe; iframe = (y == 0x80 || y == 0x82); } else if (vid_frame->codec->implementation->ianacode == 99) { /* h.264 */ - u_int8_t * hdr = vid_frame->data; + uint8_t * hdr = vid_frame->data; uint8_t fragment_type = hdr[0] & 0x1f; uint8_t nal_type = hdr[1] & 0x1f; uint8_t start_bit = hdr[1] & 0x80;