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
    // If we get here, the frame header was OK.
    // Reset the fid to the beginning of the file:
    rewind(fid);
#else
    fseek(fid, SEEK_SET,0);
#endif

F:\software\live\BasicUsageEnvironment\BasicTaskScheduler.cpp

#ifndef _WIN32_WCE
  if (socketNum+1 > fMaxNumSockets) {
    fMaxNumSockets = socketNum+1;
  }
#else
  fMaxNumSockets++;
#endif

#ifndef _WIN32_WCE
  if (socketNum+1 == fMaxNumSockets) {
    --fMaxNumSockets;
  }
#else
  fMaxNumSockets--;
#endif





Ross Finlayson <[EMAIL PROTECTED]> 
Sent by: [EMAIL PROTECTED]
03/20/2008 02:13 PM
Please respond to
LIVE555 Streaming Media - development & use <[EMAIL PROTECTED]>


To
LIVE555 Streaming Media - development & use <[EMAIL PROTECTED]>
cc

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






Note: For WINCE, only 3-4 files need some minor changes. I will send you 
those diffs.

Please post those diffs to the mailing list, and I'll see if I can 
incorporate those changes (using "#if !defined(_WIN32_WCE)", as 
appropriate) in a future release of the software.

-- 


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

_______________________________________________
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel

Reply via email to