forums.ps2dev.org Forum Index forums.ps2dev.org
Homebrew PS2, PSP & PS3 Development Discussions
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Furikup Video and Voice full 3.90 compatible (no prx)

 
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development
View previous topic :: View next topic  
Author Message
mypspdev



Joined: 11 Jul 2007
Posts: 178

PostPosted: Wed Feb 13, 2008 2:24 am    Post subject: Furikup Video and Voice full 3.90 compatible (no prx) Reply with quote

Hi to all!
I'd like to get in touch with Fanjita team /Noobz team for some improvements and completion on Furikup Video and Voice psp-phone.

My issues:
- I'd like to develop a full 3.90 cf integrated SIP Phone adapting Furikup source code by Fanjita team, of course sharing the results and sources
- I've already realized a successful Video and Voice SIP phone between two PSPs
- I've developed a new Furikup without 1.50 user mode prx.

Here are issues to avoid 1.50 user mode prx:
- use
Code:
sceUtilityLoadNetModule(1);
sceUtilityLoadNetModule(3);
connect_to_apctl(MyVarIPConnection)

instead of 1.50 Net utility
- change all threads calls
- in codec.c of SIPEngine do not use
Code:
stunParseServerName(config_get_stun_server(), &dest);

because in stun.c of ortp library
Code:
gethostbyname

is called: it doesn't work in 3.xx (I do not why)
and use instead the resolver:
Code:
void stun_server_resolver(char *value)
{
   int rid = -1;
   char buf[1024];
   struct in_addr addr;
   char name[1024];
   while(1)
   {
      if(sceNetResolverCreate(&rid, buf, sizeof(buf)) < 0)
      {
         printf("Error creating resolver\n");
         break;
      }
      printf("Created resolver %08x\n", rid);
      if(sceNetResolverStartNtoA(rid, value, &addr, 2, 3) < 0)
      {
         printf("Error resolving %s\n", value);
         break;
      }
      printf("Resolved %s to %s\n", value, inet_ntoa(addr));
      break;
   }   
   if(rid >= 0)
   {
      sceNetResolverDelete(rid);
   }
}


- Than I' m using a 160x120 pixel RGB (76800 bytes) or monochorme (19200 bytes) in a little window on the screen to capture video frames and trasmitting / receiving.

I'd like to share thes issues with Fanjita team or others in order to finalize a Video and Voice PSP-SIP Phone with full functions and good quality.

Thanks for feed back and contacts.

My best to all
Back to top
View user's profile Send private message
jimparis



Joined: 10 Jun 2005
Posts: 1179
Location: Boston

PostPosted: Wed Feb 13, 2008 3:18 am    Post subject: Reply with quote

Maybe try
http://forums.noobz.eu/sip-phone-support/
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development All times are GMT + 10 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group