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
Instead of changing the code, you should just define TIME_BASE, by adding
-DTIME_BASE=int
to the compile line in your "config.*" file. That way, things will
continue to work whenever you upgrade the code to a new version.
Whenever possible, you should try to avoid modifying the supplied code.
--
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