Lines Matching refs:p_extra

969                     uint8_t      *p_extra;  in SessionsSetup()  local
973 if( ( p_extra = parseStreamMuxConfigStr( sub->fmtp_config(), in SessionsSetup()
977 tk->fmt.p_extra = xmalloc( i_extra ); in SessionsSetup()
978 memcpy( tk->fmt.p_extra, p_extra, i_extra ); in SessionsSetup()
979 delete[] p_extra; in SessionsSetup()
989 uint8_t *p_extra; in SessionsSetup() local
993 if( ( p_extra = parseGeneralConfigStr( sub->fmtp_config(), in SessionsSetup()
997 tk->fmt.p_extra = xmalloc( i_extra ); in SessionsSetup()
998 memcpy( tk->fmt.p_extra, p_extra, i_extra ); in SessionsSetup()
999 delete[] p_extra; in SessionsSetup()
1023 unsigned char *p_extra; in SessionsSetup() local
1024 if( ( p_extra=parseVorbisConfigStr( sub->fmtp_config(), in SessionsSetup()
1028 tk->fmt.p_extra = p_extra; in SessionsSetup()
1059 uint8_t *p_extra = NULL; in SessionsSetup() local
1064 if((p_extra=parseH264ConfigStr( sub->fmtp_spropparametersets(), in SessionsSetup()
1068 tk->fmt.p_extra = xmalloc( i_extra ); in SessionsSetup()
1069 memcpy( tk->fmt.p_extra, p_extra, i_extra ); in SessionsSetup()
1071 delete[] p_extra; in SessionsSetup()
1090 tk->fmt.p_extra = xmalloc( i_extraTot ); in SessionsSetup()
1093 memcpy( tk->fmt.p_extra, p_extra1, i_extra1 ); in SessionsSetup()
1097 memcpy( ((char*)tk->fmt.p_extra)+i_extra1, p_extra2, i_extra2 ); in SessionsSetup()
1101 memcpy( ((char*)tk->fmt.p_extra)+i_extra1+i_extra2, p_extra3, i_extra3 ); in SessionsSetup()
1115 uint8_t *p_extra; in SessionsSetup() local
1119 if( ( p_extra = parseGeneralConfigStr( sub->fmtp_config(), in SessionsSetup()
1123 tk->fmt.p_extra = xmalloc( i_extra ); in SessionsSetup()
1124 memcpy( tk->fmt.p_extra, p_extra, i_extra ); in SessionsSetup()
1125 delete[] p_extra; in SessionsSetup()
1175 unsigned char *p_extra; in SessionsSetup() local
1176 if( ( p_extra=parseVorbisConfigStr( sub->fmtp_config(), in SessionsSetup()
1180 tk->fmt.p_extra = p_extra; in SessionsSetup()
1988 tk->fmt.p_extra = xmalloc( tk->fmt.i_extra ); in StreamRead()
1989 memcpy(tk->fmt.p_extra, pos+8, atomLength-8); in StreamRead()
1998 tk->fmt.p_extra = xmalloc( tk->fmt.i_extra ); in StreamRead()
1999 memcpy( tk->fmt.p_extra, &sdAtom[12], tk->fmt.i_extra ); in StreamRead()
2388 uint8_t *p_extra = NULL; in parseVorbisConfigStr() local
2394 p_extra = (uint8_t*)xmalloc( configSize ); in parseVorbisConfigStr()
2395 memcpy( p_extra, p_cfg+headerSkip, configSize ); in parseVorbisConfigStr()
2398 return p_extra; in parseVorbisConfigStr()