Re: [Live-devel] Live555 build on WinCE 6.0 fileno returns void *

2009-06-18 Thread Ishwar . Jasuja
Seems to be working fine for me.. I downloaded latest tarball today morning, compiled and verified. If you want, I can send you .vcp files that have. Only change I had to make was this line 83 in BasicTaskScheduler.cpp file if (errno != EINTR && errno != EAGAIN) { To if (err != 0) WINC

Re: [Live-devel] Live555 build on WinCE 6.0 fileno returns void *

2009-06-17 Thread Ishwar . Jasuja
define READ_FROM_FILES_SYNCHRONOUSLY in your project file. siyara nt Sent by: live-devel-boun...@ns.live555.com 06/17/2009 02:25 AM Please respond to LIVE555 Streaming Media - development & use To live-de...@ns.live555.com cc Subject [Live-devel] Live555 build on WinCE 6.0 fileno returns

Re: [Live-devel] Problems with streaming live h264 video on TI da Vinci platform.

2008-06-12 Thread Ishwar . Jasuja
Amit, What is TI demo? Is it a TI eval board? I am running this software on our video card that uses DM642 TI processor and has TI BIOS (operating system) on it. For networking stack, we are using TI NDK. I am using code composer(CCStudio) v3.3 for development environment. Ishwar "Amit Lob

Re: [Live-devel] Problems with streaming live h264 video on TI da Vinci platform.

2008-06-10 Thread Ishwar . Jasuja
I ran into some strange timer manipulation problem while doing porting for TI NDK and had to make following change. #ifdef TIME_BASE typedef TIME_BASE time_base_seconds; #else typedef int time_base_seconds; #endif With the original code ( typedef long time_base_seconds;), it would do 8 bytes su

Re: [Live-devel] DeviceSource question

2008-05-27 Thread Ishwar . Jasuja
Ross, I made changes as per your recommendation below. But I dont see any data being streamed out by MultiFramedRTPSink() class . Here is what I have done, To make things simpler, I am reading data from a file (that has few seconds of elementary video stream data stored in it) in doGetNextFra

[Live-devel] DeviceSource question

2008-05-23 Thread Ishwar . Jasuja
r Am I totally missing something here? Thanks Ishwar Jasuja ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel

Re: [Live-devel] Why H264 annexB bytestream transported incompletely?

2008-03-28 Thread Ishwar . Jasuja
Did you try increasing Socket send & receive buffer size & see if that makes any difference? Regards, Ishwar Andreas F?rber <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 03/28/2008 02:17 AM Please respond to LIVE555 Streaming Media - development & use <[EMAIL PROTECTED]> To LIVE555 Stream

Re: [Live-devel] Building Live555 streaming media in WindowsMobile 5.0

2008-03-28 Thread Ishwar . Jasuja
, you will want to define READ_FROM_FILES_SYNCHRONOUSLY -- Ross Finlayson Live Networks, Inc. http://www.live555.com/___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel [attachment "w

Re: [Live-devel] Building Live555 streaming media in Windows Mobile 5.0

2008-03-27 Thread Ishwar . Jasuja
WINCE does have _fileno() function that can be used to get fd from FILE pointer. But I dont know if that would work. I have only used select() call for socket communication in our system which is based on WinCE. WINCE documentation states that the select can only be used for sockets. see the de

Re: [Live-devel] Building Live555 streaming media in Windows Mobile 5.0

2008-03-27 Thread Ishwar . Jasuja
www.live555.com/ ___________ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel [attachment "winmail.dat" deleted by Ishwar Jasuja/NA/Johnson_Controls] ___ liv

Re: [Live-devel] Building Live555 streaming media in Windows Mobile 5.0

2008-03-20 Thread Ishwar . Jasuja
I think you are right. You dont need those two diffs. I was porting the package for both WinCE and TI NDK at the same time. So might have put it in for the later. Sorry about that Ishwar Ross Finlayson <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 03/20/2008 03:02 PM Please respond to LIVE5

Re: [Live-devel] Building Live555 streaming media in Windows Mobile 5.0

2008-03-20 Thread Ishwar . Jasuja
Here you go.. Thanks Ishwar F:\software\live\liveMedia\MP3StreamState.cpp static Boolean socketIsReadable(int socket) { #ifndef _WIN32_WCE const unsigned numFds = socket+1; #else const unsigned numFds = 1; #endif F:\software\live\liveMedia\ADTSAudioFileSource.cpp #ifndef _WIN32_WCE //

Re: [Live-devel] Building Live555 streaming media in Windows Mobile 5.0

2008-03-20 Thread Ishwar . Jasuja
Ardy, I have made changes to the latest version to make it work in Embedded WINCE environment. I run this on SH4 platform. But that shouldnt matter. I can zip the files and send those to you. But files also have changes for TI NDK. So it might be little confusing. Although all TI NDK changes ar