Furikup Video and Voice full 3.90 compatible (no prx)

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
mypspdev
Posts: 178
Joined: Wed Jul 11, 2007 10:30 pm

Furikup Video and Voice full 3.90 compatible (no prx)

Post by mypspdev »

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: Select all

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: Select all

stunParseServerName(config_get_stun_server(), &dest);

because in stun.c of ortp library

Code: Select all

gethostbyname
is called: it doesn't work in 3.xx (I do not why)
and use instead the resolver:

Code: Select all

void stun_server_resolver(char *value)
{
	int rid = -1;
	char buf[1024];
	struct in_addr addr;
	char name[1024];
	while(1)
	{
		if&#40;sceNetResolverCreate&#40;&rid, buf, sizeof&#40;buf&#41;&#41; < 0&#41;
		&#123;
			printf&#40;"Error creating resolver\n"&#41;;
			break;
		&#125;
		printf&#40;"Created resolver %08x\n", rid&#41;;
		if&#40;sceNetResolverStartNtoA&#40;rid, value, &addr, 2, 3&#41; < 0&#41;
		&#123;
			printf&#40;"Error resolving %s\n", value&#41;;
			break;
		&#125;
		printf&#40;"Resolved %s to %s\n", value, inet_ntoa&#40;addr&#41;&#41;;
		break;
	&#125;	
	if&#40;rid >= 0&#41;
	&#123;
		sceNetResolverDelete&#40;rid&#41;;
	&#125;
&#125;
- 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
jimparis
Posts: 1145
Joined: Fri Jun 10, 2005 4:21 am
Location: Boston

Post by jimparis »

Post Reply