opalvoip-svn Mailing List for OpalVOIP (Page 644)
Brought to you by:
csoutheren,
rjongbloed
You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(71) |
Nov
(241) |
Dec
(143) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(210) |
Feb
(263) |
Mar
(214) |
Apr
(290) |
May
(203) |
Jun
(160) |
Jul
(128) |
Aug
(158) |
Sep
(376) |
Oct
(234) |
Nov
(227) |
Dec
(216) |
2009 |
Jan
(99) |
Feb
(151) |
Mar
(234) |
Apr
(143) |
May
(271) |
Jun
(244) |
Jul
(173) |
Aug
(124) |
Sep
(246) |
Oct
(178) |
Nov
(85) |
Dec
(77) |
2010 |
Jan
(101) |
Feb
(79) |
Mar
(92) |
Apr
(134) |
May
(125) |
Jun
(121) |
Jul
(61) |
Aug
(70) |
Sep
(86) |
Oct
(81) |
Nov
(65) |
Dec
(75) |
2011 |
Jan
(110) |
Feb
(119) |
Mar
(267) |
Apr
(154) |
May
(296) |
Jun
(177) |
Jul
(149) |
Aug
(124) |
Sep
(120) |
Oct
(116) |
Nov
(99) |
Dec
(121) |
2012 |
Jan
(78) |
Feb
(161) |
Mar
(323) |
Apr
(154) |
May
(190) |
Jun
(207) |
Jul
(176) |
Aug
(165) |
Sep
(137) |
Oct
(85) |
Nov
(112) |
Dec
(100) |
2013 |
Jan
(341) |
Feb
(102) |
Mar
(240) |
Apr
(216) |
May
(233) |
Jun
(226) |
Jul
(139) |
Aug
(192) |
Sep
(183) |
Oct
(211) |
Nov
(220) |
Dec
(110) |
2014 |
Jan
(203) |
Feb
(205) |
Mar
(100) |
Apr
(178) |
May
(194) |
Jun
(249) |
Jul
(136) |
Aug
(241) |
Sep
(226) |
Oct
(200) |
Nov
(94) |
Dec
(46) |
2015 |
Jan
(94) |
Feb
(74) |
Mar
(89) |
Apr
(78) |
May
(65) |
Jun
(70) |
Jul
(113) |
Aug
(176) |
Sep
(140) |
Oct
(154) |
Nov
(99) |
Dec
(115) |
2016 |
Jan
(102) |
Feb
(69) |
Mar
(97) |
Apr
(53) |
May
(42) |
Jun
(13) |
Jul
(42) |
Aug
(30) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <rjo...@us...> - 2007-11-07 05:51:35
|
Revision: 18821 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18821&view=rev Author: rjongbloed Date: 2007-11-06 21:51:39 -0800 (Tue, 06 Nov 2007) Log Message: ----------- Added virtual functions on PProcess called whenever threads are started/ended. Modified Paths: -------------- ptlib/trunk/include/ptlib/pprocess.h ptlib/trunk/src/ptlib/Nucleus++/NucleusThread.cxx ptlib/trunk/src/ptlib/common/osutils.cxx ptlib/trunk/src/ptlib/msos/win32.cxx ptlib/trunk/src/ptlib/unix/tlibbe.cxx ptlib/trunk/src/ptlib/unix/tlibmpthrd.cxx ptlib/trunk/src/ptlib/unix/tlibthrd.cxx ptlib/trunk/src/ptlib/unix/tlibvx.cxx Modified: ptlib/trunk/include/ptlib/pprocess.h =================================================================== --- ptlib/trunk/include/ptlib/pprocess.h 2007-11-07 00:00:15 UTC (rev 18820) +++ ptlib/trunk/include/ptlib/pprocess.h 2007-11-07 05:51:39 UTC (rev 18821) @@ -455,6 +455,20 @@ */ static PProcess & Current(); + /**Callback for when a thread is started by the PTLib system. Note this is + called in the context of the new thread. + */ + virtual void OnThreadStart( + PThread & thread + ); + + /**Callback for when a thread is ended if wqas started in the PTLib system. + Note this is called in the context of the old thread. + */ + virtual void OnThreadEnded( + PThread & thread + ); + /**Determine if the current processes object instance has been initialised. If this returns TRUE it is safe to use the PProcess::Current() function. @@ -548,6 +562,10 @@ */ DWORD GetProcessID() const; + /**Return the time at which the program was started + */ + PTime GetStartTime() const; + /**Get the effective user name of the owner of the process, eg "root" etc. This is a platform dependent string only provided by platforms that are multi-user. Note that some value may be returned as a "simulated" user. @@ -712,35 +730,31 @@ static PDirectory GetOSConfigDir(); //@} - PTimerList * GetTimerList(); - /* Get the list of timers handled by the application. This is an internal + /**Get the list of timers handled by the application. This is an internal function and should not need to be called by the user. @return list of timers. */ + PTimerList * GetTimerList(); + /**Internal initialisation function called directly from + #_main()#. The user should never call this function. + */ static void PreInitialise( int argc, // Number of program arguments. char ** argv, // Array of strings for program arguments. char ** envp // Array of string for the system environment ); - /* Internal initialisation function called directly from + + /**Internal shutdown function called directly from the ~PProcess #_main()#. The user should never call this function. */ - static void PreShutdown(); - /* Internal shutdown function called directly from the ~PProcess - #_main()#. The user should never call this function. - */ + /// Main function for process, called from real main after initialisation virtual int _main(void * arg = NULL); - // Main function for process, called from real main after initialisation - PTime GetStartTime() const; - /* return the time at which the program was started - */ - private: void Construct(); Modified: ptlib/trunk/src/ptlib/Nucleus++/NucleusThread.cxx =================================================================== --- ptlib/trunk/src/ptlib/Nucleus++/NucleusThread.cxx 2007-11-07 00:00:15 UTC (rev 18820) +++ ptlib/trunk/src/ptlib/Nucleus++/NucleusThread.cxx 2007-11-07 05:51:39 UTC (rev 18821) @@ -291,6 +291,9 @@ } void pwNUTask::Entry() - { +{ + PProcess & process = PProcess::Current(); + process.OnThreadStart(*AssociatedPThread); AssociatedPThread->Main(); - } + process.OnThreadEnded(*AssociatedPThread); +} Modified: ptlib/trunk/src/ptlib/common/osutils.cxx =================================================================== --- ptlib/trunk/src/ptlib/common/osutils.cxx 2007-11-07 00:00:15 UTC (rev 18820) +++ ptlib/trunk/src/ptlib/common/osutils.cxx 2007-11-07 05:51:39 UTC (rev 18821) @@ -2239,6 +2239,16 @@ } +void PProcess::OnThreadStart(PThread & /*thread*/) +{ +} + + +void PProcess::OnThreadEnded(PThread & /*thread*/) +{ +} + + BOOL PProcess::IsInitialised() { return PProcessInstance != NULL; Modified: ptlib/trunk/src/ptlib/msos/win32.cxx =================================================================== --- ptlib/trunk/src/ptlib/msos/win32.cxx 2007-11-07 00:00:15 UTC (rev 18820) +++ ptlib/trunk/src/ptlib/msos/win32.cxx 2007-11-07 05:51:39 UTC (rev 18821) @@ -1262,7 +1262,9 @@ ::CoInitializeEx(NULL, COINIT_MULTITHREADED); #endif + process.OnThreadStart(*thread); thread->Main(); + process.OnThreadEnded(*thread); #if defined(_WIN32_DCOM) ::CoUninitialize(); Modified: ptlib/trunk/src/ptlib/unix/tlibbe.cxx =================================================================== --- ptlib/trunk/src/ptlib/unix/tlibbe.cxx 2007-11-07 00:00:15 UTC (rev 18820) +++ ptlib/trunk/src/ptlib/unix/tlibbe.cxx 2007-11-07 05:51:39 UTC (rev 18821) @@ -152,8 +152,12 @@ process.activeThreads.SetAt((unsigned) thread->mId, thread); process.threadMutex.Signal(); + process.OnThreadStart(*thread); + thread->Main(); + process.OnThreadEnded(*thread); + return 0; } Modified: ptlib/trunk/src/ptlib/unix/tlibmpthrd.cxx =================================================================== --- ptlib/trunk/src/ptlib/unix/tlibmpthrd.cxx 2007-11-07 00:00:15 UTC (rev 18820) +++ ptlib/trunk/src/ptlib/unix/tlibmpthrd.cxx 2007-11-07 05:51:39 UTC (rev 18821) @@ -429,10 +429,14 @@ thread->suspend_semaphore->Wait(); // Wait for the Resume } + process.OnThreadStart(*thread); + // now call the the thread main routine //PTRACE(1, "tlibthrd\tAbout to call Main"); thread->Main(); + process.OnThreadEnded(*thread); + #ifdef DEBUG_THREADS if (debug_mpthreads) fprintf(stderr,"thread %p returning\n", thread); Modified: ptlib/trunk/src/ptlib/unix/tlibthrd.cxx =================================================================== --- ptlib/trunk/src/ptlib/unix/tlibthrd.cxx 2007-11-07 00:00:15 UTC (rev 18820) +++ ptlib/trunk/src/ptlib/unix/tlibthrd.cxx 2007-11-07 05:51:39 UTC (rev 18821) @@ -1357,6 +1357,8 @@ PTRACE(5, "PWLib\tStarted thread " << thread << ' ' << thread->threadName); + PProcess::Current().OnThreadStart(*thread); + // now call the the thread main routine thread->Main(); @@ -1369,10 +1371,11 @@ void PThread::PX_ThreadEnd(void * arg) { + PThread * thread = (PThread *)arg; PProcess & process = PProcess::Current(); + process.OnThreadEnded(*thread); process.threadMutex.Wait(); - PThread * thread = (PThread *)arg; pthread_t id = thread->GetThreadId(); if (id == 0) { // Don't know why, but pthreads under Linux at least can call this function Modified: ptlib/trunk/src/ptlib/unix/tlibvx.cxx =================================================================== --- ptlib/trunk/src/ptlib/unix/tlibvx.cxx 2007-11-07 00:00:15 UTC (rev 18820) +++ ptlib/trunk/src/ptlib/unix/tlibvx.cxx 2007-11-07 05:51:39 UTC (rev 18821) @@ -138,7 +138,9 @@ if (::semTake(thread->syncPoint, WAIT_FOREVER) == OK) { if (::semDelete(thread->syncPoint) == OK) thread->syncPoint = NULL; - thread->Main(); + process.OnThreadStart(*thread); + thread->Main(); + process.OnThreadEnded(*thread); } else printf("::ThreadFunction> ::semTake failed, errno=0x%X\n",errno); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rjo...@us...> - 2007-11-07 00:00:11
|
Revision: 18820 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18820&view=rev Author: rjongbloed Date: 2007-11-06 16:00:15 -0800 (Tue, 06 Nov 2007) Log Message: ----------- When using "default" video input/output device selection, give precedence to non fail safe video drivers, e.g. VideoForWindows or SDL rather than FakeVideo or NULLOutput. Modified Paths: -------------- ptlib/trunk/src/ptlib/common/videoio.cxx Modified: ptlib/trunk/src/ptlib/common/videoio.cxx =================================================================== --- ptlib/trunk/src/ptlib/common/videoio.cxx 2007-11-06 22:33:15 UTC (rev 18819) +++ ptlib/trunk/src/ptlib/common/videoio.cxx 2007-11-07 00:00:15 UTC (rev 18820) @@ -420,7 +420,22 @@ PStringList drivers = VideoDevice::GetDriverNames(pluginMgr); if (drivers.IsEmpty()) return NULL; - adjustedDriverName = drivers[0]; + + // Give precedence to drivers like camera grabbers, leave out the fail safe types such as NULL + PINDEX driverIndex; + for (driverIndex = drivers.GetSize()-1; driverIndex > 0; --driverIndex) { + static const char * lowPriorityDrivers[] = { + "YUVFile", "FakeVideo", "NULLOutput" + }; + PINDEX i; + for (i = 0; i < PARRAYSIZE(lowPriorityDrivers); i++) { + if (drivers[driverIndex] == lowPriorityDrivers[i]) + break; + } + if (i == PARRAYSIZE(lowPriorityDrivers)) + break; + } + adjustedDriverName = drivers[driverIndex]; } PStringList devices = VideoDevice::GetDriversDeviceNames(adjustedDriverName); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dom...@us...> - 2007-11-06 22:33:13
|
Revision: 18819 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18819&view=rev Author: dominance Date: 2007-11-06 14:33:15 -0800 (Tue, 06 Nov 2007) Log Message: ----------- add print-version command to not need to script SOVER generation in Debian snapshots packaging duplicated to upstream sources. Actually this should go in make/lib.mak - if it'd work there. Modified Paths: -------------- ptlib/trunk/make/common.mak Modified: ptlib/trunk/make/common.mak =================================================================== --- ptlib/trunk/make/common.mak 2007-11-06 00:51:04 UTC (rev 18818) +++ ptlib/trunk/make/common.mak 2007-11-06 22:33:15 UTC (rev 18819) @@ -690,6 +690,8 @@ version: @echo v$(VERSION) " CVS tag:" `cvs status Makefile | grep "Sticky Tag" | sed -e "s/(none)/HEAD/" -e "s/(.*)//" -e "s/^.*://"` +print-version: + @echo $(VERSION) ifndef VERSION_FILE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rjo...@us...> - 2007-11-06 00:51:01
|
Revision: 18818 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18818&view=rev Author: rjongbloed Date: 2007-11-05 16:51:04 -0800 (Mon, 05 Nov 2007) Log Message: ----------- Cannot use AC_CHECK_FILE when cross compiling, changed to do file tests explicitly. Modified Paths: -------------- opal/trunk/configure opal/trunk/configure.ac Modified: opal/trunk/configure =================================================================== --- opal/trunk/configure 2007-11-05 21:33:17 UTC (rev 18817) +++ opal/trunk/configure 2007-11-06 00:51:04 UTC (rev 18818) @@ -1,55 +1,26 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61. +# Generated by GNU Autoconf 2.59. # -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh +# Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - +elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then + set -o posix fi +DUALCASE=1; export DUALCASE # for MKS sh - - - -# PATH needs CR -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset @@ -58,43 +29,8 @@ fi -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -as_nl=' -' -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - { (exit 1); exit 1; } -fi - # Work around bugs in pre-3.0 UWIN ksh. -for as_var in ENV MAIL MAILPATH -do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var -done +$as_unset ENV MAIL MAILPATH PS1='$ ' PS2='> ' PS4='+ ' @@ -108,19 +44,18 @@ if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else - ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var + $as_unset $as_var fi done # Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then +if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then +if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then as_basename=basename else as_basename=false @@ -128,388 +63,157 @@ # Name of the executable. -as_me=`$as_basename -- "$0" || +as_me=`$as_basename "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || + X"$0" : 'X\(/\)$' \| \ + . : '\(.\)' 2>/dev/null || echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` + sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } + /^X\/\(\/\/\)$/{ s//\1/; q; } + /^X\/\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` -# CDPATH. -$as_unset CDPATH +# PATH needs CR, and LINENO needs CR and PATH. +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits -if test "x$CONFIG_SHELL" = x; then - if (eval ":") 2>/dev/null; then - as_have_required=yes -else - as_have_required=no +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh fi - if test $as_have_required = yes && (eval ": -(as_func_return () { - (exit \$1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi + as_lineno_1=$LINENO + as_lineno_2=$LINENO + as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x$as_lineno_3" = "x$as_lineno_2" || { + # Find who we are. Look in the path if we contain no path at all + # relative or not. + case $0 in + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +done -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = \"\$1\" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test \$exitcode = 0) || { (exit 1); exit 1; } - -( - as_lineno_1=\$LINENO - as_lineno_2=\$LINENO - test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && - test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } -") 2> /dev/null; then - : -else - as_candidate_shells= + ;; + esac + # We did not find ourselves, most probably we were run as `sh COMMAND' + # in which case we are not to be found in the path. + if test "x$as_myself" = x; then + as_myself=$0 + fi + if test ! -f "$as_myself"; then + { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 + { (exit 1); exit 1; }; } + fi + case $CONFIG_SHELL in + '') as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - case $as_dir in + for as_base in sh bash ksh sh5; do + case $as_dir in /*) - for as_base in sh bash ksh sh5; do - as_candidate_shells="$as_candidate_shells $as_dir/$as_base" - done;; - esac -done -IFS=$as_save_IFS - - - for as_shell in $as_candidate_shells $SHELL; do - # Try only shells that exist, to save several forks. - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { ("$as_shell") 2> /dev/null <<\_ASEOF -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - -: -_ASEOF -}; then - CONFIG_SHELL=$as_shell - as_have_required=yes - if { "$as_shell" 2> /dev/null <<\_ASEOF -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - -: -(as_func_return () { - (exit $1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} - -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi - -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = "$1" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test $exitcode = 0) || { (exit 1); exit 1; } - -( + if ("$as_dir/$as_base" -c ' as_lineno_1=$LINENO as_lineno_2=$LINENO + as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } + test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then + $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } + $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } + CONFIG_SHELL=$as_dir/$as_base + export CONFIG_SHELL + exec "$CONFIG_SHELL" "$0" ${1+"$@"} + fi;; + esac + done +done +;; + esac -_ASEOF -}; then - break -fi - -fi - - done - - if test "x$CONFIG_SHELL" != x; then - for as_var in BASH_ENV ENV - do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - done - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} -fi - - - if test $as_have_required = no; then - echo This script requires a shell more modern than all the - echo shells that I found on your system. Please install a - echo modern shell, or manually run the script under such a - echo shell if you do have one. - { (exit 1); exit 1; } -fi - - -fi - -fi - - - -(eval "as_func_return () { - (exit \$1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} - -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi - -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = \"\$1\" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test \$exitcode = 0") || { - echo No shell found that supports shell functions. - echo Please tell aut...@gn... about your system, - echo including any error possibly output before this - echo message -} - - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line after each line using $LINENO; the second 'sed' - # does the real work. The second script uses 'N' to pair each - # line-number line with the line containing $LINENO, and appends - # trailing '-' during substitution so that $LINENO is not a special - # case at line end. + # line-number line before each line; the second 'sed' does the real + # work. The second script uses 'N' to pair each line-number line + # with the numbered line, and appends trailing '-' during + # substitution so that $LINENO is not a special case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # scripts with optimization help from Paolo Bonzini. Blame Lee - # E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | + # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) + sed '=' <$as_myself | sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + s,$,-, + : loop + s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, t loop - s/-\n.*// + s,-$,, + s,^['$as_cr_digits']*\n,, ' >$as_me.lineno && - chmod +x "$as_me.lineno" || + chmod +x $as_me.lineno || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" + # original and so on. Autoconf is especially sensible to this). + . ./$as_me.lineno # Exit status is that of the last command. exit } -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in --n*) - case `echo 'x\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - *) ECHO_C='\c';; - esac;; -*) - ECHO_N='-n';; +case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in + *c*,-n*) ECHO_N= ECHO_C=' +' ECHO_T=' ' ;; + *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; + *) ECHO_N= ECHO_C='\c' ECHO_T= ;; esac -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then +if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir -fi echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + # We could just check for DJGPP; but this test a) works b) is more generic + # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). + if test -f conf$$.exe; then + # Don't use ln at all; we don't have any links as_ln_s='cp -p' + else + as_ln_s='ln -s' + fi elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null +rm -f conf$$ conf$$.exe conf$$.file if mkdir -p . 2>/dev/null; then as_mkdir_p=: @@ -518,28 +222,7 @@ as_mkdir_p=false fi -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x +as_executable_p="test -f" # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" @@ -548,27 +231,39 @@ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" +# IFS +# We need space, tab and new line, in precisely that order. +as_nl=' +' +IFS=" $as_nl" -exec 7<&0 </dev/null 6>&1 +# CDPATH. +$as_unset CDPATH + # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` +exec 6>&1 + # # Initializations. # ac_default_prefix=/usr/local -ac_clean_files= ac_config_libobj_dir=. -LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} +# Maximum number of lines to put in a shell here document. +# This variable seems obsolete. It should probably be removed, and +# only ac_max_sed_lines should be used. +: ${ac_max_here_lines=38} + # Identity of this package. PACKAGE_NAME= PACKAGE_TARNAME= @@ -580,140 +275,43 @@ # Factoring default headers for most tests. ac_includes_default="\ #include <stdio.h> -#ifdef HAVE_SYS_TYPES_H +#if HAVE_SYS_TYPES_H # include <sys/types.h> #endif -#ifdef HAVE_SYS_STAT_H +#if HAVE_SYS_STAT_H # include <sys/stat.h> #endif -#ifdef STDC_HEADERS +#if STDC_HEADERS # include <stdlib.h> # include <stddef.h> #else -# ifdef HAVE_STDLIB_H +# if HAVE_STDLIB_H # include <stdlib.h> # endif #endif -#ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +#if HAVE_STRING_H +# if !STDC_HEADERS && HAVE_MEMORY_H # include <memory.h> # endif # include <string.h> #endif -#ifdef HAVE_STRINGS_H +#if HAVE_STRINGS_H # include <strings.h> #endif -#ifdef HAVE_INTTYPES_H +#if HAVE_INTTYPES_H # include <inttypes.h> +#else +# if HAVE_STDINT_H +# include <stdint.h> +# endif #endif -#ifdef HAVE_STDINT_H -# include <stdint.h> -#endif -#ifdef HAVE_UNISTD_H +#if HAVE_UNISTD_H # include <unistd.h> #endif" -ac_subst_vars='SHELL -PATH_SEPARATOR -PACKAGE_NAME -PACKAGE_TARNAME -PACKAGE_VERSION -PACKAGE_STRING -PACKAGE_BUGREPORT -exec_prefix -prefix -program_transform_name -bindir -sbindir -libexecdir -datarootdir -datadir -sysconfdir -sharedstatedir -localstatedir -includedir -oldincludedir -docdir -infodir -htmldir -dvidir -pdfdir -psdir -libdir -localedir -mandir -DEFS -ECHO_C -ECHO_N -ECHO_T -LIBS -build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -CPPFLAGS -ac_ct_CC -EXEEXT -OBJEXT -CXX -CXXFLAGS -ac_ct_CXX -OPALDIR -INSTALLPREFIX -LIBDIR -OPAL_VERSION -BUILD_TYPE -PTLIB_CONFIG -PTLIBDIR -GCC_HAS_CLZ -CPP -GREP -EGREP -SIZE16 -SIZE32 -OPAL_SYSTEM_SPEEX -OPAL_HAVE_SPEEX_SPEEX_H -OPAL_AUDIO -HAS_LIBDL -OPAL_VIDEO -OPAL_SIP -OPAL_H323 -OPAL_IAX2 -OPAL_H224 -OPAL_T38FAX -OPAL_H450 -OPAL_H460 -OPAL_LID -OPAL_IVR -OPAL_RFC4175 -OPAL_ZRTP -HAS_LIBZRTP -OPAL_SRTP -HAS_LIBSRTP -STDCCFLAGS -ENDLDLIBS -INSTALL_PROGRAM -INSTALL_SCRIPT -INSTALL_DATA -subdirs -LIBOBJS -LTLIBOBJS' +ac_subdirs_all="$ac_subdirs_all plugins" +ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX OPALDIR INSTALLPREFIX LIBDIR OPAL_VERSION BUILD_TYPE PTLIB_CONFIG PTLIBDIR GCC_HAS_CLZ CPP EGREP SIZE16 SIZE32 OPAL_SYSTEM_SPEEX OPAL_HAVE_SPEEX_SPEEX_H OPAL_AUDIO HAS_LIBDL OPAL_VIDEO OPAL_SIP OPAL_H323 OPAL_IAX2 OPAL_H224 OPAL_T38FAX OPAL_H450 OPAL_H460 OPAL_LID OPAL_IVR OPAL_RFC4175 OPAL_ZRTP HAS_LIBZRTP OPAL_SRTP HAS_LIBSRTP STDCCFLAGS ENDLDLIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA subdirs LIBOBJS LTLIBOBJS' ac_subst_files='' - ac_precious_vars='build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -LIBS -CPPFLAGS -CXX -CXXFLAGS -CCC -CPP' -ac_subdirs_all='plugins' # Initialize some variables set by options. ac_init_help= @@ -740,48 +338,34 @@ # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. -# (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' -datarootdir='${prefix}/share' -datadir='${datarootdir}' +datadir='${prefix}/share' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' +libdir='${exec_prefix}/lib' includedir='${prefix}/include' oldincludedir='/usr/include' -docdir='${datarootdir}/doc/${PACKAGE}' -infodir='${datarootdir}/info' -htmldir='${docdir}' -dvidir='${docdir}' -pdfdir='${docdir}' -psdir='${docdir}' -libdir='${exec_prefix}/lib' -localedir='${datarootdir}/locale' -mandir='${datarootdir}/man' +infodir='${prefix}/info' +mandir='${prefix}/man' ac_prev= -ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then - eval $ac_prev=\$ac_option + eval "$ac_prev=\$ac_option" ac_prev= continue fi - case $ac_option in - *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *) ac_optarg=yes ;; - esac + ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` # Accept the important Cygnus configure options, so we can diagnose typos. - case $ac_dashdash$ac_option in - --) - ac_dashdash=yes ;; + case $ac_option in -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; @@ -803,45 +387,33 @@ --config-cache | -C) cache_file=config.cache ;; - -datadir | --datadir | --datadi | --datad) + -datadir | --datadir | --datadi | --datad | --data | --dat | --da) ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=*) + -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ + | --da=*) datadir=$ac_optarg ;; - -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ - | --dataroo | --dataro | --datar) - ac_prev=datarootdir ;; - -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ - | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) - datarootdir=$ac_optarg ;; - -disable-* | --disable-*) ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && + expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` - eval enable_$ac_feature=no ;; + ac_feature=`echo $ac_feature | sed 's/-/_/g'` + eval "enable_$ac_feature=no" ;; - -docdir | --docdir | --docdi | --doc | --do) - ac_prev=docdir ;; - -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) - docdir=$ac_optarg ;; - - -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) - ac_prev=dvidir ;; - -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) - dvidir=$ac_optarg ;; - -enable-* | --enable-*) ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && + expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` - eval enable_$ac_feature=\$ac_optarg ;; + ac_feature=`echo $ac_feature | sed 's/-/_/g'` + case $ac_option in + *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; + *) ac_optarg=yes ;; + esac + eval "enable_$ac_feature='$ac_optarg'" ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ @@ -868,12 +440,6 @@ -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; - -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) - ac_prev=htmldir ;; - -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ - | --ht=*) - htmldir=$ac_optarg ;; - -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; @@ -898,16 +464,13 @@ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; - -localedir | --localedir | --localedi | --localed | --locale) - ac_prev=localedir ;; - -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) - localedir=$ac_optarg ;; - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst | --locals) + | --localstate | --localstat | --localsta | --localst \ + | --locals | --local | --loca | --loc | --lo) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + | --localstate=* | --localstat=* | --localsta=* | --localst=* \ + | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) @@ -972,16 +535,6 @@ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; - -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) - ac_prev=pdfdir ;; - -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) - pdfdir=$ac_optarg ;; - - -psdir | --psdir | --psdi | --psd | --ps) - ac_prev=psdir ;; - -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) - psdir=$ac_optarg ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; @@ -1034,20 +587,24 @@ -with-* | --with-*) ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && + expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/[-.]/_/g'` - eval with_$ac_package=\$ac_optarg ;; + ac_package=`echo $ac_package| sed 's/-/_/g'` + case $ac_option in + *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; + *) ac_optarg=yes ;; + esac + eval "with_$ac_package='$ac_optarg'" ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && + expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/[-.]/_/g'` - eval with_$ac_package=no ;; + ac_package=`echo $ac_package | sed 's/-/_/g'` + eval "with_$ac_package=no" ;; --x) # Obsolete; use --with-x. @@ -1078,7 +635,8 @@ expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } - eval $ac_envvar=\$ac_optarg + ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` + eval "$ac_envvar='$ac_optarg'" export $ac_envvar ;; *) @@ -1098,21 +656,29 @@ { (exit 1); exit 1; }; } fi -# Be sure to have absolute directory names. -for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ - datadir sysconfdir sharedstatedir localstatedir includedir \ - oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir +# Be sure to have absolute paths. +for ac_var in exec_prefix prefix do - eval ac_val=\$$ac_var + eval ac_val=$`echo $ac_var` case $ac_val in - [\\/$]* | ?:[\\/]* ) continue;; - NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + [\\/$]* | ?:[\\/]* | NONE | '' ) ;; + *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 + { (exit 1); exit 1; }; };; esac - { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; } done +# Be sure to have absolute paths. +for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ + localstatedir libdir includedir oldincludedir infodir mandir +do + eval ac_val=$`echo $ac_var` + case $ac_val in + [\\/$]* | ?:[\\/]* ) ;; + *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 + { (exit 1); exit 1; }; };; + esac +done + # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. @@ -1137,76 +703,82 @@ test "$silent" = yes && exec 6>/dev/null -ac_pwd=`pwd` && test -n "$ac_pwd" && -ac_ls_di=`ls -di .` && -ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - { echo "$as_me: error: Working directory cannot be determined" >&2 - { (exit 1); exit 1; }; } -test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - { echo "$as_me: error: pwd does not report name of working directory" >&2 - { (exit 1); exit 1; }; } - - # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes - # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$0" || + # Try the directory containing this script, then its parent. + ac_confdir=`(dirname "$0") 2>/dev/null || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || + X"$0" : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || echo X"$0" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` srcdir=$ac_confdir - if test ! -r "$srcdir/$ac_unique_file"; then + if test ! -r $srcdir/$ac_unique_file; then srcdir=.. fi else ac_srcdir_defaulted=no fi -if test ! -r "$srcdir/$ac_unique_file"; then - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 +if test ! -r $srcdir/$ac_unique_file; then + if test "$ac_srcdir_defaulted" = yes; then + { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 { (exit 1); exit 1; }; } -fi -ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 + else + { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } - pwd)` -# When building in place, set srcdir=. -if test "$ac_abs_confdir" = "$ac_pwd"; then - srcdir=. + fi fi -# Remove unnecessary trailing slashes from srcdir. -# Double slashes in file names in object file debugging info -# mess up M-x gdb in Emacs. -case $srcdir in -*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -esac -for ac_var in $ac_precious_vars; do - eval ac_env_${ac_var}_set=\${${ac_var}+set} - eval ac_env_${ac_var}_value=\$${ac_var} - eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} - eval ac_cv_env_${ac_var}_value=\$${ac_var} -done +(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || + { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 + { (exit 1); exit 1; }; } +srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` +ac_env_build_alias_set=${build_alias+set} +ac_env_build_alias_value=$build_alias +ac_cv_env_build_alias_set=${build_alias+set} +ac_cv_env_build_alias_value=$build_alias +ac_env_host_alias_set=${host_alias+set} +ac_env_host_alias_value=$host_alias +ac_cv_env_host_alias_set=${host_alias+set} +ac_cv_env_host_alias_value=$host_alias +ac_env_target_alias_set=${target_alias+set} +ac_env_target_alias_value=$target_alias +ac_cv_env_target_alias_set=${target_alias+set} +ac_cv_env_target_alias_value=$target_alias +ac_env_CC_set=${CC+set} +ac_env_CC_value=$CC +ac_cv_env_CC_set=${CC+set} +ac_cv_env_CC_value=$CC +ac_env_CFLAGS_set=${CFLAGS+set} +ac_env_CFLAGS_value=$CFLAGS +ac_cv_env_CFLAGS_set=${CFLAGS+set} +ac_cv_env_CFLAGS_value=$CFLAGS +ac_env_LDFLAGS_set=${LDFLAGS+set} +ac_env_LDFLAGS_value=$LDFLAGS +ac_cv_env_LDFLAGS_set=${LDFLAGS+set} +ac_cv_env_LDFLAGS_value=$LDFLAGS +ac_env_CPPFLAGS_set=${CPPFLAGS+set} +ac_env_CPPFLAGS_value=$CPPFLAGS +ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} +ac_cv_env_CPPFLAGS_value=$CPPFLAGS +ac_env_CXX_set=${CXX+set} +ac_env_CXX_value=$CXX +ac_cv_env_CXX_set=${CXX+set} +ac_cv_env_CXX_value=$CXX +ac_env_CXXFLAGS_set=${CXXFLAGS+set} +ac_env_CXXFLAGS_value=$CXXFLAGS +ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set} +ac_cv_env_CXXFLAGS_value=$CXXFLAGS +ac_env_CPP_set=${CPP+set} +ac_env_CPP_value=$CPP +ac_cv_env_CPP_set=${CPP+set} +ac_cv_env_CPP_value=$CPP # # Report the --help message. @@ -1235,6 +807,9 @@ -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] +_ACEOF + + cat <<_ACEOF Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] @@ -1252,22 +827,15 @@ --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] + --datadir=DIR read-only architecture-independent data [PREFIX/share] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] + --infodir=DIR info documentation [PREFIX/info] + --mandir=DIR man documentation [PREFIX/man] _ACEOF cat <<\_ACEOF @@ -1301,9 +869,8 @@ CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a nonstandard directory <lib dir> - LIBS libraries to pass to the linker, e.g. -l<library> - CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I<include dir> if - you have headers in a nonstandard directory <include dir> + CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have + headers in a nonstandard directory <include dir> CXX C++ compiler command CXXFLAGS C++ compiler flags CPP C preprocessor @@ -1312,86 +879,118 @@ it to find libraries and programs with nonstandard names/locations. _ACEOF -ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. + ac_popdir=`pwd` for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || continue + test -d $ac_dir || continue ac_builddir=. -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) +if test "$ac_dir" != .; then ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix + # A "../" for each directory in $ac_dir_suffix. + ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` +else + ac_dir_suffix= ac_top_builddir= +fi case $srcdir in - .) # We are building in place. + .) # No --srcdir option. We are building in place. ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. + if test -z "$ac_top_builddir"; then + ac_top_srcdir=. + else + ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` + fi ;; + [\\/]* | ?:[\\/]* ) # Absolute path. ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; + ac_top_srcdir=$srcdir ;; + *) # Relative path. + ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_builddir$srcdir ;; esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. - if test -f "$ac_srcdir/configure.gnu"; then - echo && - $SHELL "$ac_srcdir/configure.gnu" --help=recursive - elif test -f "$ac_srcdir/configure"; then - echo && - $SHELL "$ac_srcdir/configure" --help=recursive +# Do not use `cd foo && pwd` to compute absolute paths, because +# the directories may not exist. +case `pwd` in +.) ac_abs_builddir="$ac_dir";; +*) + case "$ac_dir" in + .) ac_abs_builddir=`pwd`;; + [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; + *) ac_abs_builddir=`pwd`/"$ac_dir";; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_top_builddir=${ac_top_builddir}.;; +*) + case ${ac_top_builddir}. in + .) ac_abs_top_builddir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; + *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_srcdir=$ac_srcdir;; +*) + case $ac_srcdir in + .) ac_abs_srcdir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; + *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_top_srcdir=$ac_top_srcdir;; +*) + case $ac_top_srcdir in + .) ac_abs_top_srcdir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; + *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; + esac;; +esac + + cd $ac_dir + # Check for guested configure; otherwise get Cygnus style configure. + if test -f $ac_srcdir/configure.gnu; then + echo + $SHELL $ac_srcdir/configure.gnu --help=recursive + elif test -f $ac_srcdir/configure; then + echo + $SHELL $ac_srcdir/configure --help=recursive + elif test -f $ac_srcdir/configure.ac || + test -f $ac_srcdir/configure.in; then + echo + $ac_configure --help else echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi || ac_status=$? - cd "$ac_pwd" || { ac_status=$?; break; } + fi + cd $ac_popdir done fi -test -n "$ac_init_help" && exit $ac_status +test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -configure -generated by GNU Autoconf 2.61 -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +Copyright (C) 2003 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF - exit + exit 0 fi -cat >config.log <<_ACEOF +exec 5>config.log +cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was -generated by GNU Autoconf 2.61. Invocation command line was +generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ _ACEOF -exec 5>>config.log { cat <<_ASUNAME ## --------- ## @@ -1410,7 +1009,7 @@ /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +hostinfo = `(hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` @@ -1424,7 +1023,6 @@ test -z "$as_dir" && as_dir=. echo "PATH: $as_dir" done -IFS=$as_save_IFS } >&5 @@ -1446,6 +1044,7 @@ ac_configure_args= ac_configure_args0= ac_configure_args1= +ac_sep= ac_must_keep_next=false for ac_pass in 1 2 do @@ -1456,7 +1055,7 @@ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; - *\'*) + *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in @@ -1478,7 +1077,9 @@ -* ) ac_must_keep_next=true ;; esac fi - ac_configure_args="$ac_configure_args '$ac_arg'" + ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" + # Get rid of the leading space. + ac_sep=" " ;; esac done @@ -1489,8 +1090,8 @@ # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. -# WARNING: Use '\'' to represent an apostrophe within the trap. -# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +# WARNING: Be sure not to use single quotes in there, as some shells, +# such as our DU 5.0 friend, will then `close' the trap. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { @@ -1503,34 +1104,20 @@ _ASBOX echo # The following way of writing the cache mishandles newlines in values, -( - for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 -echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - *) $as_unset $ac_var ;; - esac ;; - esac - done +{ (set) 2>&1 | - case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( - *${as_nl}ac_space=\ *) + case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in + *ac_space=\ *) sed -n \ - "s/'\''/'\''\\\\'\'''\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" - ;; #( + "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" + ;; *) - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + sed -n \ + "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ;; - esac | - sort -) + esac; +} echo cat <<\_ASBOX @@ -1541,28 +1128,22 @@ echo for ac_var in $ac_subst_vars do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - echo "$ac_var='\''$ac_val'\''" + eval ac_val=$`echo $ac_var` + echo "$ac_var='"'"'$ac_val'"'"'" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX -## ------------------- ## -## File substitutions. ## -## ------------------- ## +## ------------- ## +## Output files. ## +## ------------- ## _ASBOX echo for ac_var in $ac_subst_files do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - echo "$ac_var='\''$ac_val'\''" + eval ac_val=$`echo $ac_var` + echo "$ac_var='"'"'$ac_val'"'"'" done | sort echo fi @@ -1574,24 +1155,26 @@ ## ----------- ## _ASBOX echo - cat confdefs.h + sed "/^$/d" confdefs.h | sort echo fi test "$ac_signal" != 0 && echo "$as_me: caught signal $ac_signal" echo "$as_me: exit $exit_status" } >&5 - rm -f core *.core core.conftest.* && - rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + rm -f core *.core && + rm -rf conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status -' 0 + ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -f -r conftest* confdefs.h +rm -rf conftest* confdefs.h +# AIX cpp loses on an empty file, so make sure it contains at least a newline. +echo >confdefs.h # Predefined preprocessor variables. @@ -1622,17 +1205,14 @@ # Let the site file select an alternate cache file if it wants to. # Prefer explicitly selected file to automatically selected ones. -if test -n "$CONFIG_SITE"; then - set x "$CONFIG_SITE" -elif test "x$prefix" != xNONE; then - set x "$prefix/share/config.site" "$prefix/etc/config.site" -else - set x "$ac_default_prefix/share/config.site" \ - "$ac_default_prefix/etc/config.site" +if test -z "$CONFIG_SITE"; then + if test "x$prefix" != xNONE; then + CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" + else + CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" + fi fi -shift -for ac_site_file -do +for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} @@ -1648,8 +1228,8 @@ { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in - [\\/]* | ?:[\\/]* ) . "$cache_file";; - *) . "./$cache_file";; + [\\/]* | ?:[\\/]* ) . $cache_file;; + *) . ./$cache_file;; esac fi else @@ -1661,11 +1241,12 @@ # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do +for ac_var in `(set) 2>&1 | + sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val=\$ac_cv_env_${ac_var}_value - eval ac_new_val=\$ac_env_${ac_var}_value + eval ac_old_val="\$ac_cv_env_${ac_var}_value" + eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 @@ -1690,7 +1271,8 @@ # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in - *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) + ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in @@ -1707,6 +1289,11 @@ { (exit 1); exit 1; }; } fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu @@ -1723,14 +1310,10 @@ -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu + ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -1739,8 +1322,8 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else @@ -1753,34 +1336,32 @@ IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done -IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 fi - fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else @@ -1793,51 +1374,36 @@ IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done -IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6; } + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 fi - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to aut...@gn...." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to aut...@gn...." >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi + CC=$ac_ct_CC else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else @@ -1850,34 +1416,74 @@ IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done -IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 fi - +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 fi +done +done + fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + CC=$ac_ct_CC +else + CC="$ac_cv_prog_CC" +fi + +fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else @@ -1891,7 +1497,7 @@ IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue @@ -1902,7 +1508,6 @@ fi done done -IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. @@ -1920,23 +1525,22 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 fi - fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe + for ac_prog in cl do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else @@ -1949,38 +1553,36 @@ IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done -IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 fi - test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC - for ac_prog in cl.exe + for ac_prog in cl do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else @@ -1993,45 +1595,29 @@ IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done -IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6; } + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 fi - test -n "$ac_ct_CC" && break done - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to aut...@gn...." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to aut...@gn...." >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi + CC=$ac_ct_CC fi fi @@ -2044,35 +1630,21 @@ { (exit 1); exit 1; }; } # Provide some information about the compiler. -echo "$as_me:$LINENO: checking for C compiler version" >&5 +echo "$as_me:$LINENO:" \ + "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` -{ (ac_try="$ac_compiler --version >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_e... [truncated message content] |
From: <dsa...@us...> - 2007-11-05 21:35:25
|
Revision: 18817 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18817&view=rev Author: dsandras Date: 2007-11-05 13:33:17 -0800 (Mon, 05 Nov 2007) Log Message: ----------- Applied patch to fix compilation warnings thanks to Julien Puydt <jpuydt free fr>. Thanks! Modified Paths: -------------- opal/trunk/include/h323/gkclient.h opal/trunk/include/h323/h4601.h Modified: opal/trunk/include/h323/gkclient.h =================================================================== --- opal/trunk/include/h323/gkclient.h 2007-11-05 12:23:59 UTC (rev 18816) +++ opal/trunk/include/h323/gkclient.h 2007-11-05 21:33:17 UTC (rev 18817) @@ -557,7 +557,7 @@ private: // Disable copy constructor and assignment - AlternateInfo(const AlternateInfo &) { } + AlternateInfo(const AlternateInfo &other): PObject(other) { } AlternateInfo & operator=(const AlternateInfo &) { return *this; } }; PSortedList<AlternateInfo> alternates; Modified: opal/trunk/include/h323/h4601.h =================================================================== --- opal/trunk/include/h323/h4601.h 2007-11-05 12:23:59 UTC (rev 18816) +++ opal/trunk/include/h323/h4601.h 2007-11-05 21:33:17 UTC (rev 18817) @@ -272,6 +272,8 @@ return ((PASN_IA5String &)*choice).GetValue(); case e_transport: return H323TransportAddress(*(H225_TransportAddress *)choice); + default: + break; } return PString(); @@ -747,75 +749,75 @@ interface. */ // PDU calls (Used in the H225_RAS Class) - virtual BOOL OnSendGatekeeperRequest(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual BOOL OnSendGatekeeperConfirm(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual BOOL OnSendGatekeeperReject(H225_FeatureDescriptor & pdu) { return FALSE; }; + virtual BOOL OnSendGatekeeperRequest(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual BOOL OnSendGatekeeperConfirm(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual BOOL OnSendGatekeeperReject(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; - virtual void OnReceiveGatekeeperRequest(const H225_FeatureDescriptor & pdu) {}; - virtual void OnReceiveGatekeeperConfirm(const H225_FeatureDescriptor & pdu) {}; - virtual void OnReceiveGatekeeperReject(const H225_FeatureDescriptor & pdu) {}; + virtual void OnReceiveGatekeeperRequest(const H225_FeatureDescriptor & /*pdu*/) {}; + virtual void OnReceiveGatekeeperConfirm(const H225_FeatureDescriptor & /*pdu*/) {}; + virtual void OnReceiveGatekeeperReject(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendRegistrationRequest(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual BOOL OnSendRegistrationConfirm(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual BOOL OnSendRegistrationReject(H225_FeatureDescriptor & pdu) { return FALSE; }; + virtual BOOL OnSendRegistrationRequest(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual BOOL OnSendRegistrationConfirm(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual BOOL OnSendRegistrationReject(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; - virtual void OnReceiveRegistrationRequest(const H225_FeatureDescriptor & pdu) {}; - virtual void OnReceiveRegistrationConfirm(const H225_FeatureDescriptor & pdu) {}; - virtual void OnReceiveRegistrationReject(const H225_FeatureDescriptor & pdu) {}; + virtual void OnReceiveRegistrationRequest(const H225_FeatureDescriptor & /*pdu*/) {}; + virtual void OnReceiveRegistrationConfirm(const H225_FeatureDescriptor & /*pdu*/) {}; + virtual void OnReceiveRegistrationReject(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendAdmissionRequest(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual BOOL OnSendAdmissionConfirm(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual BOOL OnSendAdmissionReject(H225_FeatureDescriptor & pdu) { return FALSE; }; + virtual BOOL OnSendAdmissionRequest(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual BOOL OnSendAdmissionConfirm(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual BOOL OnSendAdmissionReject(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; - virtual void OnReceiveAdmissionRequest(const H225_FeatureDescriptor & pdu) {}; - virtual void OnReceiveAdmissionConfirm(const H225_FeatureDescriptor & pdu) {}; - virtual void OnReceiveAdmissionReject(const H225_FeatureDescriptor & pdu) {}; + virtual void OnReceiveAdmissionRequest(const H225_FeatureDescriptor & /*pdu*/) {}; + virtual void OnReceiveAdmissionConfirm(const H225_FeatureDescriptor & /*pdu*/) {}; + virtual void OnReceiveAdmissionReject(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendLocationRequest(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual BOOL OnSendLocationConfirm(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual BOOL OnSendLocationReject(H225_FeatureDescriptor & pdu) { return FALSE; }; + virtual BOOL OnSendLocationRequest(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual BOOL OnSendLocationConfirm(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual BOOL OnSendLocationReject(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; - virtual void OnReceiveLocationRequest(const H225_FeatureDescriptor & pdu) {}; - virtual void OnReceiveLocationConfirm(const H225_FeatureDescriptor & pdu) {}; - virtual void OnReceiveLocationReject(const H225_FeatureDescriptor & pdu) {}; + virtual void OnReceiveLocationRequest(const H225_FeatureDescriptor & /*pdu*/) {}; + virtual void OnReceiveLocationConfirm(const H225_FeatureDescriptor & /*pdu*/) {}; + virtual void OnReceiveLocationReject(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendServiceControlIndication(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual BOOL OnSendServiceControlResponse(H225_FeatureDescriptor & pdu) { return FALSE; }; + virtual BOOL OnSendServiceControlIndication(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual BOOL OnSendServiceControlResponse(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; - virtual void OnReceiveServiceControlIndication(const H225_FeatureDescriptor & pdu) {}; - virtual void OnReceiveServiceControlResponse(const H225_FeatureDescriptor & pdu) {}; + virtual void OnReceiveServiceControlIndication(const H225_FeatureDescriptor & /*pdu*/) {}; + virtual void OnReceiveServiceControlResponse(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendNonStandardMessage(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual void OnReceiveNonStandardMessage(const H225_FeatureDescriptor & pdu) {}; + virtual BOOL OnSendNonStandardMessage(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual void OnReceiveNonStandardMessage(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendEndpoint(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual void OnReceiveEndpoint(const H225_FeatureDescriptor & pdu) {}; + virtual BOOL OnSendEndpoint(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual void OnReceiveEndpoint(const H225_FeatureDescriptor & /*pdu*/) {}; //@} /**@name Signal PDU Interface */ //@{ // UUIE Calls (Used in the H323SignalPDU Class) - virtual BOOL OnSendSetup_UUIE(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual void OnReceiveSetup_UUIE(const H225_FeatureDescriptor & pdu) {}; + virtual BOOL OnSendSetup_UUIE(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual void OnReceiveSetup_UUIE(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendAlerting_UUIE(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual void OnReceiveAlerting_UUIE(const H225_FeatureDescriptor & pdu) {}; + virtual BOOL OnSendAlerting_UUIE(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual void OnReceiveAlerting_UUIE(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendCallProceeding_UUIE(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual void OnReceiveCallProceeding_UUIE(const H225_FeatureDescriptor & pdu) {}; + virtual BOOL OnSendCallProceeding_UUIE(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual void OnReceiveCallProceeding_UUIE(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendCallConnect_UUIE(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual void OnReceiveCallConnect_UUIE(const H225_FeatureDescriptor & pdu) {}; + virtual BOOL OnSendCallConnect_UUIE(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual void OnReceiveCallConnect_UUIE(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendFacility_UUIE(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual void OnReceiveFacility_UUIE(const H225_FeatureDescriptor & pdu) {}; + virtual BOOL OnSendFacility_UUIE(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual void OnReceiveFacility_UUIE(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendReleaseComplete_UUIE(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual void OnReceiveReleaseComplete_UUIE(const H225_FeatureDescriptor & pdu) {}; + virtual BOOL OnSendReleaseComplete_UUIE(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual void OnReceiveReleaseComplete_UUIE(const H225_FeatureDescriptor & /*pdu*/) {}; - virtual BOOL OnSendUnAllocatedPDU(H225_FeatureDescriptor & pdu) { return FALSE; }; - virtual void OnReceivedUnAllocatedPDU(const H225_FeatureDescriptor & pdu) {}; + virtual BOOL OnSendUnAllocatedPDU(H225_FeatureDescriptor & /*pdu*/) { return FALSE; }; + virtual void OnReceivedUnAllocatedPDU(const H225_FeatureDescriptor & /*pdu*/) {}; //@} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cso...@us...> - 2007-11-05 12:23:55
|
Revision: 18816 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18816&view=rev Author: csoutheren Date: 2007-11-05 04:23:59 -0800 (Mon, 05 Nov 2007) Log Message: ----------- Remove debug code Modified Paths: -------------- opal/trunk/src/codec/rfc4175.cxx Modified: opal/trunk/src/codec/rfc4175.cxx =================================================================== --- opal/trunk/src/codec/rfc4175.cxx 2007-11-05 12:23:10 UTC (rev 18815) +++ opal/trunk/src/codec/rfc4175.cxx 2007-11-05 12:23:59 UTC (rev 18816) @@ -527,10 +527,10 @@ return FALSE; } - if (frameHeight != 144 || frameWidth != 176) { - int s = inputFrames.GetSize(); - PTRACE(4, "not right frame " << s); - } + //if (frameHeight != 144 || frameWidth != 176) { + // int s = inputFrames.GetSize(); + // PTRACE(4, "not right frame " << s); + //} PTRACE(4, "RFC4175\tDecoding output from " << inputFrames.GetSize() << " input frames"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cso...@us...> - 2007-11-05 12:23:09
|
Revision: 18815 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18815&view=rev Author: csoutheren Date: 2007-11-05 04:23:10 -0800 (Mon, 05 Nov 2007) Log Message: ----------- Fix problem with inet_ntop addition Modified Paths: -------------- ptlib/trunk/configure ptlib/trunk/configure.ac ptlib/trunk/src/ptlib/common/sockets.cxx Modified: ptlib/trunk/configure =================================================================== --- ptlib/trunk/configure 2007-11-05 12:22:36 UTC (rev 18814) +++ ptlib/trunk/configure 2007-11-05 12:23:10 UTC (rev 18815) @@ -310,7 +310,7 @@ # include <unistd.h> #endif" -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS subdirs CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT PTLIBDIR PTINSTDIR INSTALLPREFIX LIBDIR MAJOR_VERSION MINOR_VERSION BUILD_NUMBER PTLIB_VERSION BUILD_TYPE build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os MACHTYPE OSTYPE OSRELEASE TARGETDIR USE_GCC USE_PCH SHAREDLIBEXT CXXCPP EGREP FLEX AR BISON HAS_REGEX HAS_PLUGINS HAS_RESOLVER HAS_SASL HAS_SASL2 HAS_OPENLDAP HAS_OPENSSL P_STATIC_ENDLDLIBS P_STATIC_LDFLAGS HAS_EXPAT HAS_VXML HAS_JABBER HAS_XMLRPC HAS_SOAP HAS_TTS HAS_IPV6 HAS_SDL HAS_VIDEO HAS_VIDEO_CAPTURE USE_SHM_VIDEO_DEVICES HAS_ASN HAS_STUN HAS_PIPECHAN HAS_DTMF HAS_WAVFILE HAS_SOCKS HAS_FTP HAS_SNMP HAS_TELNET HAS_REMCONN HAS_SERIAL HAS_POP3SMTP HAS_HTTP HAS_HTTPSVC HAS_CONFIG_FILE HAS_SOCKAGG HAS_VIDFILE HAS_AUDIO HAS_OSS HAS_ALSA HAS_ODBC STDCCFLAGS STDCXXFLAGS OPTSTDCCFLAGS ENDLDLIBS DEBUG_FLAG INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LIBOBJS LTLIBOBJS' +ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS subdirs CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT PTLIBDIR PTINSTDIR INSTALLPREFIX LIBDIR MAJOR_VERSION MINOR_VERSION BUILD_NUMBER PTLIB_VERSION BUILD_TYPE build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os MACHTYPE OSTYPE OSRELEASE TARGETDIR USE_GCC USE_PCH SHAREDLIBEXT CXXCPP EGREP FLEX AR BISON HAS_REGEX HAS_PLUGINS HAS_RESOLVER HAS_SASL HAS_SASL2 HAS_OPENLDAP HAS_OPENSSL P_STATIC_ENDLDLIBS P_STATIC_LDFLAGS HAS_EXPAT HAS_VXML HAS_JABBER HAS_XMLRPC HAS_SOAP HAS_TTS HAS_IPV6 HAS_SDL HAS_VIDEO HAS_VIDEO_CAPTURE USE_SHM_VIDEO_DEVICES HAS_ASN HAS_STUN HAS_PIPECHAN HAS_DTMF HAS_WAVFILE HAS_SOCKS HAS_FTP HAS_SNMP HAS_TELNET HAS_REMCONN HAS_SERIAL HAS_POP3SMTP HAS_HTTP HAS_HTTPSVC HAS_CONFIG_FILE HAS_SOCKAGG HAS_VIDFILE HAS_APPSHARE HAS_AUDIO HAS_OSS HAS_ALSA HAS_ODBC STDCCFLAGS STDCXXFLAGS OPTSTDCCFLAGS ENDLDLIBS DEBUG_FLAG INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LIBOBJS LTLIBOBJS' ac_subst_files='' # Initialize some variables set by options. @@ -889,6 +889,7 @@ --disable-configfile disable config file support --enable-sockagg enable socket aggregation (experimental) --enable-vidfile enable video file support + --enable-appshare enable Application share support --disable-audio disable audio support --enable-alsa enable ALSA audio support --enable-oss enable OSS audio support @@ -7874,13 +7875,13 @@ fi HAS_IPV6= -HAS_INET_NTOP= if test "$enable_ipv6" = "no" ; then { echo "$as_me:$LINENO: IPV6 disabled" >&5 echo "$as_me: IPV6 disabled" >&6;} - echo "$as_me:$LINENO: checking for inet_ntop" >&5 -echo $ECHO_N "checking for inet_ntop... $ECHO_C" >&6 +else + echo "$as_me:$LINENO: checking for IPv6 support" >&5 +echo $ECHO_N "checking for IPv6 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF @@ -7889,11 +7890,10 @@ /* end confdefs.h. */ #include <sys/types.h> #include <netinet/in.h> - #include <arpa/inet.h> int main () { -int af; void * src; char * dst; socklen_t len; inet_ntop(af, src, dst, len); +struct sockaddr_in6 s; s.sin6_scope_id = 0; ; return 0; } @@ -7920,40 +7920,30 @@ ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - HAS_INET_NTOP=yes + HAS_IPV6=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 -HAS_INET_NTOP=no +HAS_IPV6=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - if test $HAS_INET_NTOP = no ; then + if test $HAS_IPV6 = no ; then echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 else - cat >>confdefs.h <<\_ACEOF -#define P_HAS_INET_NTOP 1 -_ACEOF - - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - fi -else - echo "$as_me:$LINENO: checking for IPv6 support" >&5 -echo $ECHO_N "checking for IPv6 support... $ECHO_C" >&6 - cat >conftest.$ac_ext <<_ACEOF + cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include <sys/types.h> - #include <netinet/in.h> +#include <sys/socket.h> + #include <netdb.h> int main () { -struct sockaddr_in6 s; s.sin6_scope_id = 0; +getnameinfo(NULL, 0, NULL, 0, NULL, 0, 0); ; return 0; } @@ -7988,22 +7978,39 @@ HAS_IPV6=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - if test $HAS_IPV6 = no ; then - echo "$as_me:$LINENO: result: no" >&5 + if test $HAS_IPV6 = no ; then + echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 - else - cat >conftest.$ac_ext <<_ACEOF + else + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + +cat >>confdefs.h <<\_ACEOF +#define P_HAS_IPV6 1 +_ACEOF + + HAS_IPV6=1 + fi + fi +fi + + +HAS_INET_NTOP= +echo "$as_me:$LINENO: checking for inet_ntop" >&5 +echo $ECHO_N "checking for inet_ntop... $ECHO_C" >&6 +cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include <sys/socket.h> - #include <netdb.h> +#include <sys/types.h> + #include <netinet/in.h> + #include <arpa/inet.h> int main () { -getnameinfo(NULL, 0, NULL, 0, NULL, 0, 0); +int af; void * src; char * dst; socklen_t len; inet_ntop(af, src, dst, len); ; return 0; } @@ -8030,33 +8037,28 @@ ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - HAS_IPV6=yes + HAS_INET_NTOP=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 -HAS_IPV6=no +HAS_INET_NTOP=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - if test $HAS_IPV6 = no ; then - echo "$as_me:$LINENO: result: no" >&5 +if test $HAS_INET_NTOP = no ; then + echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 - else - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - -cat >>confdefs.h <<\_ACEOF -#define P_HAS_IPV6 1 +else + cat >>confdefs.h <<\_ACEOF +#define P_HAS_INET_NTOP 1 _ACEOF - HAS_IPV6=1 - fi - fi + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 fi - # Check whether --enable-qos or --disable-qos was given. if test "${enable_qos+set}" = set; then enableval="$enable_qos" @@ -9164,6 +9166,37 @@ +if test "$HAS_VIDEO" \!= "1" ; then + default_appshare=no +fi + +# Check whether --enable-vidfile or --disable-vidfile was given. +if test "${enable_vidfile+set}" = set; then + enableval="$enable_vidfile" + +fi; + +if test "${enable_appshare}z" = "z" ; then + enable_vidfile=$default_appshare +fi + +HAS_APPSHARE= +if test "$enable_appshare" = "no" ; then + { echo "$as_me:$LINENO: Application share support disabled" >&5 +echo "$as_me: Application share support disabled" >&6;} +else + { echo "$as_me:$LINENO: Application share enabled" >&5 +echo "$as_me: Application share enabled" >&6;} + HAS_APPSHARE=1 + cat >>confdefs.h <<\_ACEOF +#define P_APPSHARE 1 +_ACEOF + +fi + + + + # Check whether --enable-audio or --disable-audio was given. if test "${enable_audio+set}" = set; then enableval="$enable_audio" @@ -10770,6 +10803,7 @@ s,@HAS_CONFIG_FILE@,$HAS_CONFIG_FILE,;t t s,@HAS_SOCKAGG@,$HAS_SOCKAGG,;t t s,@HAS_VIDFILE@,$HAS_VIDFILE,;t t +s,@HAS_APPSHARE@,$HAS_APPSHARE,;t t s,@HAS_AUDIO@,$HAS_AUDIO,;t t s,@HAS_OSS@,$HAS_OSS,;t t s,@HAS_ALSA@,$HAS_ALSA,;t t Modified: ptlib/trunk/configure.ac =================================================================== --- ptlib/trunk/configure.ac 2007-11-05 12:22:36 UTC (rev 18814) +++ ptlib/trunk/configure.ac 2007-11-05 12:23:10 UTC (rev 18815) @@ -1582,21 +1582,9 @@ fi HAS_IPV6= -HAS_INET_NTOP= if test "$enable_ipv6" = "no" ; then AC_MSG_NOTICE(IPV6 disabled) - AC_MSG_CHECKING(for inet_ntop) - AC_TRY_COMPILE([#include <sys/types.h> - #include <netinet/in.h> - #include <arpa/inet.h>], - [int af; void * src; char * dst; socklen_t len; inet_ntop(af, src, dst, len);], HAS_INET_NTOP=yes, HAS_INET_NTOP=no) - if test $HAS_INET_NTOP = no ; then - AC_MSG_RESULT(no) - else - AC_DEFINE(P_HAS_INET_NTOP, 1) - AC_MSG_RESULT(yes) - fi else AC_MSG_CHECKING(for IPv6 support) AC_TRY_COMPILE([#include <sys/types.h> @@ -1619,6 +1607,19 @@ fi AC_SUBST(HAS_IPV6) +HAS_INET_NTOP= +AC_MSG_CHECKING(for inet_ntop) +AC_TRY_COMPILE([#include <sys/types.h> + #include <netinet/in.h> + #include <arpa/inet.h>], + [int af; void * src; char * dst; socklen_t len; inet_ntop(af, src, dst, len);], HAS_INET_NTOP=yes, HAS_INET_NTOP=no) +if test $HAS_INET_NTOP = no ; then + AC_MSG_RESULT(no) +else + AC_DEFINE(P_HAS_INET_NTOP, 1) + AC_MSG_RESULT(yes) +fi + dnl ######################################################################## dnl look for QoS functions Modified: ptlib/trunk/src/ptlib/common/sockets.cxx =================================================================== --- ptlib/trunk/src/ptlib/common/sockets.cxx 2007-11-05 12:22:36 UTC (rev 18814) +++ ptlib/trunk/src/ptlib/common/sockets.cxx 2007-11-05 12:23:10 UTC (rev 18815) @@ -2528,8 +2528,8 @@ #endif // P_HAS_IPV6 # if defined(P_HAS_INET_NTOP) PString str; - if (inet_ntop(AF_INET, v.four, str.GetPointer(INET_ADDRSTRLEN), INET_ADDRSTRLEN) == NULL) - return PString::Empty() + if (inet_ntop(AF_INET, (const void *)&v.four, str.GetPointer(INET_ADDRSTRLEN), INET_ADDRSTRLEN) == NULL) + return PString::Empty(); str.MakeMinimumSize(); return str; # else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cso...@us...> - 2007-11-05 12:22:32
|
Revision: 18814 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18814&view=rev Author: csoutheren Date: 2007-11-05 04:22:36 -0800 (Mon, 05 Nov 2007) Log Message: ----------- Fix Makefile when PTLBDIR not defined Modified Paths: -------------- ptlib/trunk/samples/ipv6test/Makefile Modified: ptlib/trunk/samples/ipv6test/Makefile =================================================================== --- ptlib/trunk/samples/ipv6test/Makefile 2007-11-05 11:44:51 UTC (rev 18813) +++ ptlib/trunk/samples/ipv6test/Makefile 2007-11-05 12:22:36 UTC (rev 18814) @@ -32,4 +32,7 @@ PROG = ipv6test SOURCES := main.cxx precompile.cxx +ifndef PTLIBDIR +PTLIBDIR=${HOME}/ptlib +endif include $(PTLIBDIR)/make/ptlib.mak This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sh...@us...> - 2007-11-05 11:44:46
|
Revision: 18813 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18813&view=rev Author: shorne Date: 2007-11-05 03:44:51 -0800 (Mon, 05 Nov 2007) Log Message: ----------- moved H.239 to generic codec definition and added 480i and 720p as acceptable frame sizes Modified Paths: -------------- opal/trunk/plugins/video/H.263-ffmpeg/h263ffmpeg.cxx Modified: opal/trunk/plugins/video/H.263-ffmpeg/h263ffmpeg.cxx =================================================================== --- opal/trunk/plugins/video/H.263-ffmpeg/h263ffmpeg.cxx 2007-11-05 11:36:55 UTC (rev 18812) +++ opal/trunk/plugins/video/H.263-ffmpeg/h263ffmpeg.cxx 2007-11-05 11:44:51 UTC (rev 18813) @@ -843,6 +843,8 @@ CIF, CIF4, CIF16, + i480, + p720, NumStdSizes, UnknownStdSize = NumStdSizes }; @@ -858,6 +860,8 @@ { 352, 288}, // CIF { 704, 576}, // 4CIF { 1408, 1152}, // 16CIF + { 640, 480}, // i480 + { 1280, 720}, // p720 }; int sizeIndex; @@ -1571,7 +1575,6 @@ &licenseInfo, // license information PluginCodec_MediaTypeVideo | // video codec - PluginCodec_MediaTypeExtVideo | // Extended video codec PluginCodec_RTPTypeExplicit, // specified RTP type h263CIFDesc, // text decription @@ -1605,7 +1608,6 @@ &licenseInfo, // license information PluginCodec_MediaTypeVideo | // video codec - PluginCodec_MediaTypeExtVideo | // Extended video codec PluginCodec_RTPTypeExplicit, // specified RTP type h263CIFDesc, // text decription @@ -1707,6 +1709,7 @@ &licenseInfo, // license information PluginCodec_MediaTypeVideo | // video codec + PluginCodec_MediaTypeExtVideo | // Extended video codec PluginCodec_RTPTypeExplicit, // specified RTP type h263Desc, // text decription @@ -1740,6 +1743,7 @@ &licenseInfo, // license information PluginCodec_MediaTypeVideo | // video codec + PluginCodec_MediaTypeExtVideo | // Extended video codec PluginCodec_RTPTypeExplicit, // specified RTP type h263Desc, // text decription This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rjo...@us...> - 2007-11-05 11:36:53
|
Revision: 18812 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18812&view=rev Author: rjongbloed Date: 2007-11-05 03:36:55 -0800 (Mon, 05 Nov 2007) Log Message: ----------- Fix cross compile, thanks Peter Nixon. Modified Paths: -------------- opal/trunk/plugins/audio/gsm-amr/Makefile.in Modified: opal/trunk/plugins/audio/gsm-amr/Makefile.in =================================================================== --- opal/trunk/plugins/audio/gsm-amr/Makefile.in 2007-11-05 08:59:40 UTC (rev 18811) +++ opal/trunk/plugins/audio/gsm-amr/Makefile.in 2007-11-05 11:36:55 UTC (rev 18812) @@ -40,7 +40,7 @@ $(OBJDIR)/%.o : %.c @mkdir -p $(OBJDIR) >/dev/null 2>&1 - $(CC) -g -c $(STDCCFLAGS) $(CCFLAGS) -o $@ $< + $(CC) -g -c -I../../../include $(STDCCFLAGS) $(CCFLAGS) -o $@ $< OBJECTS = $(addprefix $(OBJDIR)/,$(patsubst %.c,%.o,$(notdir $(SRCS)))) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sh...@us...> - 2007-11-05 08:59:35
|
Revision: 18811 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18811&view=rev Author: shorne Date: 2007-11-05 00:59:40 -0800 (Mon, 05 Nov 2007) Log Message: ----------- fixed small typo Modified Paths: -------------- ptlib/trunk/src/ptlib/common/pvidchan.cxx Modified: ptlib/trunk/src/ptlib/common/pvidchan.cxx =================================================================== --- ptlib/trunk/src/ptlib/common/pvidchan.cxx 2007-11-05 08:58:23 UTC (rev 18810) +++ ptlib/trunk/src/ptlib/common/pvidchan.cxx 2007-11-05 08:59:40 UTC (rev 18811) @@ -199,7 +199,7 @@ if (mpInput == NULL) { PTRACE(6,"PVC\t::Write, frame size is " << mpOutput->GetFrameWidth() << "x" << mpOutput->GetFrameHeight() << - " VideoGrabber is unavailabile"); + " VideoGrabber is unavailable"); return mpOutput->SetFrameData(0, 0, mpOutput->GetFrameWidth(), mpOutput->GetFrameHeight(), (const BYTE *)buf, TRUE); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sh...@us...> - 2007-11-05 08:58:18
|
Revision: 18810 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18810&view=rev Author: shorne Date: 2007-11-05 00:58:23 -0800 (Mon, 05 Nov 2007) Log Message: ----------- added windows application video Input Modified Paths: -------------- ptlib/trunk/configure.ac ptlib/trunk/include/ptbuildopts.h.in ptlib/trunk/src/ptlib/msos/Console.vcproj Modified: ptlib/trunk/configure.ac =================================================================== --- ptlib/trunk/configure.ac 2007-11-05 08:57:51 UTC (rev 18809) +++ ptlib/trunk/configure.ac 2007-11-05 08:58:23 UTC (rev 18810) @@ -2155,6 +2155,33 @@ AC_SUBST(HAS_VIDFILE) dnl ######################################################################## +dnl check for enabling app share support + +dnl MSWIN_DISPLAY appshare,Application share support +dnl MSWIN_DEFINE appshare,P_APPSHARE + +if test "$HAS_VIDEO" \!= "1" ; then + default_appshare=no +fi + +AC_ARG_ENABLE(vidfile, + [ --enable-appshare enable Application share support]) + +if test "${enable_appshare}z" = "z" ; then + enable_vidfile=$default_appshare +fi + +HAS_APPSHARE= +if test "$enable_appshare" = "no" ; then + AC_MSG_NOTICE(Application share support disabled) +else + AC_MSG_NOTICE(Application share enabled) + HAS_APPSHARE=1 + AC_DEFINE(P_APPSHARE, 1) +fi +AC_SUBST(HAS_APPSHARE) + +dnl ######################################################################## dnl check for sound support dnl MSWIN_DISPLAY audio,Sound support Modified: ptlib/trunk/include/ptbuildopts.h.in =================================================================== --- ptlib/trunk/include/ptbuildopts.h.in 2007-11-05 08:57:51 UTC (rev 18809) +++ ptlib/trunk/include/ptbuildopts.h.in 2007-11-05 08:58:23 UTC (rev 18810) @@ -649,7 +649,16 @@ #endif +///////////////////////////////////////////////// +// +// APP Share Input +// +#undef P_APPSHARE +#if defined(_MSC_VER) && P_APPSHARE +#pragma include_alias(<ptlib/vidinput_app.h>, <ptlib/msos/ptlib/vidinput_app.h>) +#endif + ///////////////////////////////////////////////// // // Runtime dynamic link libraries Modified: ptlib/trunk/src/ptlib/msos/Console.vcproj =================================================================== --- ptlib/trunk/src/ptlib/msos/Console.vcproj 2007-11-05 08:57:51 UTC (rev 18809) +++ ptlib/trunk/src/ptlib/msos/Console.vcproj 2007-11-05 08:58:23 UTC (rev 18810) @@ -1,2099 +1,2105 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="7.10" - Name="PTLib Static" - ProjectGUID="{E61B4DFB-0CAB-46DD-BB02-1AFFD61DB7F5}" - SccProjectName="" - SccLocalPath=""> - <Platforms> - <Platform - Name="Win32"/> - </Platforms> - <Configurations> - <Configuration - Name="Debug|Win32" - OutputDirectory="..\..\..\Lib" - IntermediateDirectory="..\..\..\Lib\$(ConfigurationName)" - ConfigurationType="4" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="FALSE"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="..\..\..\include" - PreprocessorDefinitions="_DEBUG;_LIB;PTRACING=1" - RuntimeLibrary="3" - RuntimeTypeInfo="TRUE" - UsePrecompiledHeader="3" - PrecompiledHeaderThrough="ptlib.h" - ProgramDataBaseFileName="$(IntDir)\$(TargetName).pdb" - BrowseInformation="1" - WarningLevel="4" - SuppressStartupBanner="TRUE" - DebugInformationFormat="3" - CompileAs="0"/> - <Tool - Name="VCCustomBuildTool"/> - <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\ptlibsd.lib" - SuppressStartupBanner="TRUE"/> - <Tool - Name="VCMIDLTool"/> - <Tool - Name="VCPostBuildEventTool"/> - <Tool - Name="VCPreBuildEventTool"/> - <Tool - Name="VCPreLinkEventTool"/> - <Tool - Name="VCResourceCompilerTool" - Culture="3081"/> - <Tool - Name="VCWebServiceProxyGeneratorTool"/> - <Tool - Name="VCXMLDataGeneratorTool"/> - <Tool - Name="VCManagedWrapperGeneratorTool"/> - <Tool - Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - </Configuration> - <Configuration - Name="Release|Win32" - OutputDirectory="..\..\..\Lib" - IntermediateDirectory="..\..\..\Lib\$(ConfigurationName)" - ConfigurationType="4" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="FALSE"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="2" - AdditionalIncludeDirectories="..\..\..\include" - PreprocessorDefinitions="NDEBUG;_LIB;PTRACING=1" - StringPooling="TRUE" - RuntimeLibrary="2" - EnableFunctionLevelLinking="TRUE" - RuntimeTypeInfo="TRUE" - UsePrecompiledHeader="3" - PrecompiledHeaderThrough="ptlib.h" - ProgramDataBaseFileName="$(IntDir)\$(TargetName).pdb" - WarningLevel="4" - SuppressStartupBanner="TRUE" - DebugInformationFormat="3" - CompileAs="0"/> - <Tool - Name="VCCustomBuildTool"/> - <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\ptlibs.lib" - SuppressStartupBanner="TRUE"/> - <Tool - Name="VCMIDLTool"/> - <Tool - Name="VCPostBuildEventTool"/> - <Tool - Name="VCPreBuildEventTool"/> - <Tool - Name="VCPreLinkEventTool"/> - <Tool - Name="VCResourceCompilerTool" - Culture="3081"/> - <Tool - Name="VCWebServiceProxyGeneratorTool"/> - <Tool - Name="VCXMLDataGeneratorTool"/> - <Tool - Name="VCManagedWrapperGeneratorTool"/> - <Tool - Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - </Configuration> - <Configuration - Name="No Trace|Win32" - OutputDirectory="..\..\..\Lib" - IntermediateDirectory="..\..\..\Lib\$(ConfigurationName)" - ConfigurationType="4" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="FALSE"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="2" - AdditionalIncludeDirectories="..\..\..\include" - PreprocessorDefinitions="NDEBUG;_LIB;PTRACING=0" - StringPooling="TRUE" - RuntimeLibrary="2" - EnableFunctionLevelLinking="TRUE" - RuntimeTypeInfo="TRUE" - UsePrecompiledHeader="3" - PrecompiledHeaderThrough="ptlib.h" - ProgramDataBaseFileName="$(IntDir)\$(TargetName).pdb" - WarningLevel="4" - SuppressStartupBanner="TRUE" - DebugInformationFormat="3" - CompileAs="0"/> - <Tool - Name="VCCustomBuildTool"/> - <Tool - Name="VCLibrarianTool" - OutputFile="$(OutDir)\ptlibsn.lib" - SuppressStartupBanner="TRUE"/> - <Tool - Name="VCMIDLTool"/> - <Tool - Name="VCPostBuildEventTool"/> - <Tool - Name="VCPreBuildEventTool"/> - <Tool - Name="VCPreLinkEventTool"/> - <Tool - Name="VCResourceCompilerTool" - Culture="3081"/> - <Tool - Name="VCWebServiceProxyGeneratorTool"/> - <Tool - Name="VCXMLDataGeneratorTool"/> - <Tool - Name="VCManagedWrapperGeneratorTool"/> - <Tool - Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <Filter - Name="Source Files" - Filter="cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"> - <File - RelativePath="..\..\ptclib\asnber.cxx"> - <FileConfiguration - Name="Debug|Win32" - ExcludedFromBuild="TRUE"> - <Tool - Name="VCCLCompilerTool"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - ExcludedFromBuild="TRUE"> - <Tool - Name="VCCLCompilerTool"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32" - ExcludedFromBuild="TRUE"> - <Tool - Name="VCCLCompilerTool"/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\asner.cxx"> - </File> - <File - RelativePath="..\..\ptclib\asnper.cxx"> - <FileConfiguration - Name="Debug|Win32" - ExcludedFromBuild="TRUE"> - <Tool - Name="VCCLCompilerTool"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - ExcludedFromBuild="TRUE"> - <Tool - Name="VCCLCompilerTool"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32" - ExcludedFromBuild="TRUE"> - <Tool - Name="VCCLCompilerTool"/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\asnxer.cxx"> - <FileConfiguration - Name="Debug|Win32" - ExcludedFromBuild="TRUE"> - <Tool - Name="VCCLCompilerTool"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - ExcludedFromBuild="TRUE"> - <Tool - Name="VCCLCompilerTool"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32" - ExcludedFromBuild="TRUE"> - <Tool - Name="VCCLCompilerTool"/> - </FileConfiguration> - </File> - <File - RelativePath="assert.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="1" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="1"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="1"/> - </FileConfiguration> - </File> - <File - RelativePath="..\common\collect.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\common\contain.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\cypher.cxx"> - </File> - <File - RelativePath="..\..\ptclib\delaychan.cxx"> - </File> - <File - RelativePath="..\..\ptclib\dtmf.cxx"> - </File> - <File - RelativePath="..\..\ptclib\enum.cxx"> - </File> - <File - RelativePath="ethsock.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\ftp.cxx"> - </File> - <File - RelativePath="..\..\ptclib\ftpclnt.cxx"> - </File> - <File - RelativePath="..\..\ptclib\ftpsrvr.cxx"> - </File> - <File - RelativePath="..\common\getdate.y"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCustomBuildTool" - CommandLine="bison -o ../common/getdate_tab.c ../common/getdate.y -" - Outputs="../common/getdate_tab.c"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCustomBuildTool" - CommandLine="bison -o ../common/getdate_tab.c ../common/getdate.y -" - Outputs="../common/getdate_tab.c"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCustomBuildTool" - CommandLine="bison -o ../common/getdate_tab.c ../common/getdate.y -" - Outputs="../common/getdate_tab.c"/> - </FileConfiguration> - </File> - <File - RelativePath="..\common\getdate_tab.c"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0"/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\guid.cxx"> - </File> - <File - RelativePath="..\..\ptclib\html.cxx"> - </File> - <File - RelativePath="..\..\ptclib\http.cxx"> - </File> - <File - RelativePath="..\..\ptclib\httpclnt.cxx"> - </File> - <File - RelativePath="..\..\ptclib\httpform.cxx"> - </File> - <File - RelativePath="..\..\ptclib\httpsrvr.cxx"> - </File> - <File - RelativePath="..\..\ptclib\httpsvc.cxx"> - </File> - <File - RelativePath="icmp.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\inetmail.cxx"> - </File> - <File - RelativePath="..\..\ptclib\inetprot.cxx"> - </File> - <File - RelativePath="..\..\ptclib\ipacl.cxx"> - </File> - <File - RelativePath="mail.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\memfile.cxx"> - </File> - <File - RelativePath="..\..\ptclib\modem.cxx"> - </File> - <File - RelativePath="..\common\notifier_ext.cxx"> - </File> - <File - RelativePath="..\common\object.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\common\osutils.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\pasn.cxx"> - </File> - <File - RelativePath="..\Common\pchannel.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\Common\pconfig.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\pdns.cxx"> - </File> - <File - RelativePath="..\common\pethsock.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\pils.cxx"> - </File> - <File - RelativePath="pipe.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\common\pipechan.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\pldap.cxx"> - </File> - <File - RelativePath="..\common\pluginmgr.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\pnat.cxx"> - </File> - <File - RelativePath="..\..\ptclib\podbc.cxx"> - </File> - <File - RelativePath="..\..\ptclib\psasl.cxx"> - </File> - <File - RelativePath="..\..\ptclib\psnmp.cxx"> - </File> - <File - RelativePath="..\..\ptclib\psoap.cxx"> - </File> - <File - RelativePath="..\..\ptclib\psockbun.cxx"> - </File> - <File - RelativePath="..\..\ptclib\pssl.cxx"> - </File> - <File - RelativePath="..\..\ptclib\pstun.cxx"> - </File> - <File - RelativePath="..\common\ptime.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="ptlib.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\ptts.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - UsePrecompiledHeader="0"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - UsePrecompiledHeader="0"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - UsePrecompiledHeader="0"/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\pvfiledev.cxx"> - </File> - <File - RelativePath="..\common\pvidchan.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\pvidfile.cxx"> - </File> - <File - RelativePath="..\..\ptclib\pwavfile.cxx"> - </File> - <File - RelativePath="..\..\ptclib\pwavfiledev.cxx"> - </File> - <File - RelativePath="..\..\ptclib\pxml.cxx"> - </File> - <File - RelativePath="..\..\ptclib\pxmlrpc.cxx"> - </File> - <File - RelativePath="..\..\ptclib\pxmlrpcs.cxx"> - </File> - <File - RelativePath="..\..\ptclib\qchannel.cxx"> - </File> - <File - RelativePath="..\common\qos.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\random.cxx"> - </File> - <File - RelativePath="remconn.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\rfc1155.cxx"> - </File> - <File - RelativePath="..\common\safecoll.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\Common\serial.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\common\sfile.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\shttpsvc.cxx"> - </File> - <File - RelativePath="..\..\ptclib\snmp.cxx"> - </File> - <File - RelativePath="..\..\ptclib\snmpclnt.cxx"> - </File> - <File - RelativePath="..\..\ptclib\snmpserv.cxx"> - </File> - <File - RelativePath="..\..\ptclib\sockagg.cxx"> - </File> - <File - RelativePath="..\common\sockets.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\socks.cxx"> - </File> - <File - RelativePath="..\common\sound.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath=".\sound_directsound.cxx"> - </File> - <File - RelativePath="sound_win32.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0"/> - </FileConfiguration> - </File> - <File - RelativePath="svcproc.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\telnet.cxx"> - </File> - <File - RelativePath="..\common\vconvert.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\common\vfakeio.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0"/> - </FileConfiguration> - </File> - <File - RelativePath="vfw.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - UsePrecompiledHeader="0"/> - </FileConfiguration> - </File> - <File - RelativePath="..\common\videoio.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\vsdl.cxx"> - </File> - <File - RelativePath="..\..\ptclib\vxml.cxx"> - </File> - <File - RelativePath="win32.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="wincfg.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="winserial.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="winsock.cxx"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="" - BrowseInformation="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\ptclib\xmpp.cxx"> - </File> - <File - RelativePath="..\..\ptclib\xmpp_c2s.cxx"> - </File> - <File - RelativePath="..\..\ptclib\xmpp_muc.cxx"> - </File> - <File - RelativePath="..\..\ptclib\xmpp_roster.cxx"> - </File> - </Filter> - <Filter - Name="Header Files" - Filter="h;hpp;hxx;hm;inl;fi;fd"> - <File - RelativePath="..\..\..\include\ptbuildopts.h"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCustomBuildTool" - CommandLine=""/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCustomBuildTool" - CommandLine=""/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCustomBuildTool" - CommandLine=""/> - </FileConfiguration> - </File> - <File - RelativePath="..\..\..\include\ptbuildopts.h.in"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCustomBuildTool" - Description="Configuring Build Options" - CommandLine="cd ..\..\.. -configure --exclude-env=VSNET_PWLIB_CONFIGURE_EXCLUDE_DIRS %PWLIB_CONFIGURE_OPTIONS% -" - Outputs="$(InputDir)ptbuildopts.h"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCustomBuildTool" - Description="Configuring Build Options" - CommandLine="cd ..\..\.. -configure --exclude-env=VSNET_PWLIB_CONFIGURE_EXCLUDE_DIRS %PWLIB_CONFIGURE_OPTIONS% -" - AdditionalDependencies="..\..\..\configure.ac" - Outputs="$(InputDir)ptbuildopts.h"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCustomBuildTool" - Description="Configuring Build Options" - CommandLine="cd ..\..\.. -configure --exclude-env=VSNET_PWLIB_CONFIGURE_EXCLUDE_DIRS %PWLIB_CONFIGURE_OPTIONS% -" - AdditionalDependencies="..\..\..\configure.ac" - Outputs="$(InputDir)ptbuildopts.h"/> - </FileConfiguration> - </File> - <Filter - Name="Common" - Filter=""> - <File - RelativePath="..\..\..\Include\PtLib\Args.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Array.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\asnber.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\asner.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\asnper.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\asnxer.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Channel.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Config.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Contain.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\critsec.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\cypher.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\delaychan.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Dict.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\dtmf.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Dynalink.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\enum.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Ethsock.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\File.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\filepath.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\ftp.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\guid.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\html.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\http.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\httpform.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\httpsvc.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Icmpsock.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Indchan.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\inetmail.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\inetprot.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\ipacl.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Ipdsock.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\ipsock.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\ipxsock.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Lists.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Mail.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\memfile.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\mime.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\modem.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\mutex.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\notifier.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\notifier_ext.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\object.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pasn.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Pdirect.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pdns.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\pfactory.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pils.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Pipechan.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pldap.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\plugin.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\pluginmgr.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\podbc.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\pprocess.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\psasl.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\psnmp.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\psoap.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\psockbun.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pssl.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Pstring.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pstun.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\psync.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Ptime.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\ptts.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pvfiledev.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pvidfile.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pwavfile.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pwavfiledev.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pxml.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pxmlrpc.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\pxmlrpcs.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\qchannel.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\random.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Remconn.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\rfc1155.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\safecoll.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\semaphor.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Serchan.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Sfile.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\shttpsvc.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\snmp.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\sockagg.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\socket.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\sockets.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\socks.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Sound.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\spxsock.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Svcproc.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\syncpoint.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\syncthrd.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Tcpsock.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\telnet.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Textfile.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\thread.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Timeint.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Timer.h"> - </File> - <File - RelativePath="..\..\..\Include\PtLib\Udpsock.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\url.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\vconvert.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\videoio.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\vsdl.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\vxml.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\xmpp.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\xmpp_c2s.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\xmpp_muc.h"> - </File> - <File - RelativePath="..\..\..\include\ptclib\xmpp_roster.h"> - </File> - </Filter> - <Filter - Name="MSOS" - Filter=""> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\channel.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\config.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\contain.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\critsec.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\debstrm.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\dynalink.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\epacket.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\ethsock.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\file.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\filepath.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\icmpsock.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\ipdsock.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\ipsock.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\ipxsock.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\mail.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\mutex.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\pdirect.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\pipechan.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\pprocess.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\ptime.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\remconn.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\semaphor.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\serchan.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\sfile.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\socket.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\sound_directsound.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\spxsock.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\svcproc.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\syncpoint.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\tcpsock.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\textfile.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\thread.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\timeint.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\timer.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\udpsock.h"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\videoio.h"> - </File> - </Filter> - </Filter> - <Filter - Name="Inlines" - Filter=".inl"> - <File - RelativePath="..\..\..\include\ptlib\contain.inl"> - </File> - <File - RelativePath="..\..\..\include\ptlib\osutil.inl"> - </File> - <File - RelativePath="..\..\..\include\ptlib\msos\ptlib\ptlib.inl"> - </File> - </Filter> - <Filter - Name="Regex" - Filter=""> - <File - RelativePath="..\common\regex\regcomp.c"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - BrowseInformation="1" - WarningLevel="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - WarningLevel="1"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - WarningLevel="1"/> - </FileConfiguration> - </File> - <File - RelativePath="..\common\regex\regerror.c"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - BrowseInformation="1" - WarningLevel="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - WarningLevel="1"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - WarningLevel="1"/> - </FileConfiguration> - </File> - <File - RelativePath="..\common\regex\regexec.c"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - BrowseInformation="1" - WarningLevel="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - WarningLevel="1"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - WarningLevel="1"/> - </FileConfiguration> - </File> - <File - RelativePath="..\common\regex\regfree.c"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - BrowseInformation="1" - WarningLevel="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - WarningLevel="1"/> - </FileConfiguration> - <FileConfiguration - Name="No Trace|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="..\common\regex" - PreprocessorDefinitions="" - UsePrecompiledHeader="0" - WarningLevel="1"/> - </FileConfiguration> - </File> - </Filter> - <File - RelativePath="..\..\..\configure.ac"> - </File> - </Files> - <Globals> - </Globals> -</VisualStudioProject> +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="7.10" + Name="PTLib Static" + ProjectGUID="{E61B4DFB-0CAB-46DD-BB02-1AFFD61DB7F5}" + SccProjectName="" + SccLocalPath=""> + <Platforms> + <Platform + Name="Win32"/> + </Platforms> + <Configurations> + <Configuration + Name="Debug|Win32" + OutputDirectory="..\..\..\Lib" + IntermediateDirectory="..\..\..\Lib\$(ConfigurationName)" + ConfigurationType="4" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="FALSE"> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + AdditionalIncludeDirectories="..\..\..\include" + PreprocessorDefinitions="_DEBUG;_LIB;PTRACING=1" + RuntimeLibrary="3" + RuntimeTypeInfo="TRUE" + UsePrecompiledHeader="3" + PrecompiledHeaderThrough="ptlib.h" + ProgramDataBaseFileName="$(IntDir)\$(TargetName).pdb" + BrowseInformation="1" + WarningLevel="4" + SuppressStartupBanner="TRUE" + DebugInformationFormat="3" + CompileAs="0"/> + <Tool + Name="VCCustomBuildTool"/> + <Tool + Name="VCLibrarianTool" + OutputFile="$(OutDir)\ptlibsd.lib" + SuppressStartupBanner="TRUE"/> + <Tool + Name="VCMIDLTool"/> + <Tool + Name="VCPostBuildEventTool"/> + <Tool + Name="VCPreBuildEventTool"/> + <Tool + Name="VCPreLinkEventTool"/> + <Tool + Name="VCResourceCompilerTool" + Culture="3081"/> + <Tool + Name="VCWebServiceProxyGeneratorTool"/> + <Tool + Name="VCXMLDataGeneratorTool"/> + <Tool + Name="VCManagedWrapperGeneratorTool"/> + <Tool + Name="VCAuxiliaryManagedWrapperGeneratorTool"/> + </Configuration> + <Configuration + Name="Release|Win32" + OutputDirectory="..\..\..\Lib" + IntermediateDirectory="..\..\..\Lib\$(ConfigurationName)" + ConfigurationType="4" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="FALSE"> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + InlineFunctionExpansion="2" + AdditionalIncludeDirectories="..\..\..\include" + PreprocessorDefinitions="NDEBUG;_LIB;PTRACING=1" + StringPooling="TRUE" + RuntimeLibrary="2" + EnableFunctionLevelLinking="TRUE" + RuntimeTypeInfo="TRUE" + UsePrecompiledHeader="3" + PrecompiledHeaderThrough="ptlib.h" + ProgramDataBaseFileName="$(IntDir)\$(TargetName).pdb" + WarningLevel="4" + SuppressStartupBanne... [truncated message content] |
From: <cso...@us...> - 2007-11-05 08:57:48
|
Revision: 18809 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18809&view=rev Author: csoutheren Date: 2007-11-05 00:57:51 -0800 (Mon, 05 Nov 2007) Log Message: ----------- Corrected frame rate calculation Modified Paths: -------------- opal/trunk/samples/simple/main.cxx Modified: opal/trunk/samples/simple/main.cxx =================================================================== --- opal/trunk/samples/simple/main.cxx 2007-11-05 08:47:41 UTC (rev 18808) +++ opal/trunk/samples/simple/main.cxx 2007-11-05 08:57:51 UTC (rev 18809) @@ -1223,7 +1223,7 @@ if (args.HasOption("video-rate")) { unsigned rate = args.GetOptionString("video-rate").AsUnsigned(); - unsigned frameTime = 1000 / rate; + unsigned frameTime = 90000 / rate; mediaFormat.SetOptionInteger(OpalMediaFormat::FrameTimeOption(), frameTime); } OpalMediaFormat::SetRegisteredMediaFormat(mediaFormat); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sh...@us...> - 2007-11-05 08:47:36
|
Revision: 18808 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18808&view=rev Author: shorne Date: 2007-11-05 00:47:41 -0800 (Mon, 05 Nov 2007) Log Message: ----------- Added Paths: ----------- ptlib/trunk/include/ptlib/msos/ptlib/vidinput_app.h Added: ptlib/trunk/include/ptlib/msos/ptlib/vidinput_app.h =================================================================== --- ptlib/trunk/include/ptlib/msos/ptlib/vidinput_app.h (rev 0) +++ ptlib/trunk/include/ptlib/msos/ptlib/vidinput_app.h 2007-11-05 08:47:41 UTC (rev 18808) @@ -0,0 +1,179 @@ +/* vidinput_app.h + * + * + * Application Input Implementation for the PTLib Library. + * + * Copyright (c) 2007 ISVO (Asia) Pte Ltd. All Rights Reserved. + * + * The contents of this file are subject to the Mozilla Public License + * Version 1.0 (the "License"); you may not use this file except in + * compliance with the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" + * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See + * the License for the specific language governing rights and limitations + * under the License. + * + * + * + * + * Contributor(s): ______________________________________. + * + * $Log: vidinput_app.h,v $ + * + * + */ + +#ifdef P_APPSHARE + +#define P_FORCE_STATIC_PLUGIN + +#include <ptlib/plugin.h> +#include <ptclib/delaychan.h> + +////////////////////////////////////////////////////////////////////// +// Video Input device + +/**This class defines a video input device for Application sharing on Windows. + */ + +class PVideoInputDevice_Application : public PVideoInputDevice +{ + PCLASSINFO(PVideoInputDevice_Application, PVideoInputDevice); + + public: + /** Create a new video input device. + */ + PVideoInputDevice_Application(); + + /**Close the video input device on destruction. + */ + ~PVideoInputDevice_Application() { Close(); } + + /** Is the device a camera, and obtain video + */ + static PStringList GetInputDeviceNames(); + + virtual PStringList GetDeviceNames() const + { return GetInputDeviceNames(); } + + /**Retrieve a list of Device Capabilities + */ + static BOOL GetDeviceCapabilities( + const PString & deviceName, ///< Name of device + InputDeviceCapabilities * caps ///< List of supported capabilities + ); + + /**Open the device given the device name. + */ + virtual BOOL Open( + const PString & DeviceName, ///< Device name to open + BOOL startImmediate = TRUE ///< Immediately start device + ); + + /**Determine if the device is currently open. + */ + virtual BOOL IsOpen(); + + /**Close the device. + */ + virtual BOOL Close(); + + /**Start the video device I/O. + */ + virtual BOOL Start(); + + /**Stop the video device I/O capture. + */ + virtual BOOL Stop(); + + /**Determine if the video device I/O capture is in progress. + */ + virtual BOOL IsCapturing(); + + /**Set the colour format to be used. + Note that this function does not do any conversion. If it returns TRUE + then the video device does the colour format in native mode. + + To utilise an internal converter use the SetColourFormatConverter() + function. + + Default behaviour sets the value of the colourFormat variable and then + returns TRUE. + */ + virtual BOOL SetColourFormat( + const PString & colourFormat ///< New colour format for device. + ); + + /**Set the video frame rate to be used on the device. + + Default behaviour sets the value of the frameRate variable and then + returns TRUE. + */ + virtual BOOL SetFrameRate( + unsigned rate ///< Frames per second + ); + + /**Set the frame size to be used. + + Note that devices may not be able to produce the requested size, and + this function will fail. See SetFrameSizeConverter(). + + Default behaviour sets the frameWidth and frameHeight variables and + returns TRUE. + */ + virtual BOOL SetFrameSize( + unsigned width, ///< New width of frame + unsigned height ///< New height of frame + ); + + /**Get the maximum frame size in bytes. + + Note a particular device may be able to provide variable length + frames (eg motion JPEG) so will be the maximum size of all frames. + */ + virtual PINDEX GetMaxFrameBytes(); + + /**Grab a frame, after a delay as specified by the frame rate. + */ + virtual BOOL GetFrameData( + BYTE * buffer, ///< Buffer to receive frame + PINDEX * bytesReturned ///< OPtional bytes returned. + ); + + /**Grab a frame. Do not delay according to the current frame rate parameter. + */ + virtual BOOL GetFrameDataNoDelay( + BYTE * buffer, ///< Buffer to receive frame + PINDEX * bytesReturned ///< OPtional bytes returned. + ); + + /**Try all known video formats & see which ones are accepted by the video driver + */ + virtual BOOL TestAllFormats(); + + /**Set the video channel (not used) + */ + virtual BOOL SetChannel(int newChannel); + + /**Set the Handle of the window you wish to capture + */ + void AttachCaptureWindow( + HWND _hwnd, ///< Handle of the window to capture + BOOL _client = TRUE ///< Only capture Client area and not caption + ); + + protected: + HWND m_hWnd; ///< Handle of Window to Capture + BOOL m_client; ///< Capture the client area only + + PMutex lastFrameMutex; ///< Frame Grab Mutex + PAdaptiveDelay grabDelay; ///< Frame Grab delay + + +}; + +PWLIB_STATIC_LOAD_PLUGIN(Application, PVideoInputDevice); + +#endif // P_APPSHARE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cso...@us...> - 2007-11-05 08:01:13
|
Revision: 18807 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18807&view=rev Author: csoutheren Date: 2007-11-05 00:01:18 -0800 (Mon, 05 Nov 2007) Log Message: ----------- Backport of fixes for on-the-wire RFC4175 Modified Paths: -------------- opal/trunk/include/codec/rfc4175.h opal/trunk/samples/simple/main.cxx opal/trunk/src/codec/rfc4175.cxx Modified: opal/trunk/include/codec/rfc4175.h =================================================================== --- opal/trunk/include/codec/rfc4175.h 2007-11-05 07:15:57 UTC (rev 18806) +++ opal/trunk/include/codec/rfc4175.h 2007-11-05 08:01:18 UTC (rev 18807) @@ -24,6 +24,10 @@ * Contributor(s): ______________________________________. * * $Log: rfc4175.h,v $ + * Revision 1.6.6.1 2007/10/10 06:54:26 csoutheren + * Updates to RFC4175 to deal with transmission over a wire + * Not finished yet :) + * * Revision 1.6 2007/09/11 15:48:35 csoutheren * Implemented RC4175 RGB * @@ -111,7 +115,7 @@ protected: virtual void StartEncoding(const RTP_DataFrame & input); - virtual void EncodeFrames() = 0; + virtual void EndEncoding() = 0; void EncodeFullFrame(); void EncodeScanLineSegment(PINDEX y, PINDEX offs, PINDEX width); @@ -160,6 +164,8 @@ BOOL first; DWORD lastSequenceNumber; DWORD lastTimeStamp; + BOOL waitingForMarker; + PINDEX packetCount; }; ///////////////////////////////////////////////////////////////////////////// @@ -170,7 +176,7 @@ { PCLASSINFO(Opal_RFC4175YCbCr420_to_YUV420P, OpalRFC4175Decoder); public: - Opal_RFC4175YCbCr420_to_YUV420P() : OpalRFC4175Decoder(OpalYUV420P, OpalRFC4175YCbCr420) { } + Opal_RFC4175YCbCr420_to_YUV420P() : OpalRFC4175Decoder(OpalRFC4175YCbCr420, OpalYUV420P) { } PINDEX GetPgroupSize() const { return 6; } PINDEX GetColsPerPgroup() const { return 2; } PINDEX GetRowsPerPgroup() const { return 2; } @@ -185,7 +191,7 @@ { PCLASSINFO(Opal_YUV420P_to_RFC4175YCbCr420, OpalRFC4175Encoder); public: - Opal_YUV420P_to_RFC4175YCbCr420() : OpalRFC4175Encoder(OpalRFC4175YCbCr420, OpalYUV420P) { } + Opal_YUV420P_to_RFC4175YCbCr420() : OpalRFC4175Encoder(OpalYUV420P, OpalRFC4175YCbCr420) { } PINDEX GetPgroupSize() const { return 6; } PINDEX GetColsPerPgroup() const { return 2; } PINDEX GetRowsPerPgroup() const { return 2; } @@ -194,7 +200,7 @@ PINDEX BytesToPixels(PINDEX bytes) const { return bytes * 8 / 12; } void StartEncoding(const RTP_DataFrame & input); - void EncodeFrames(); + void EndEncoding(); protected: BYTE * srcYPlane; @@ -208,7 +214,7 @@ { PCLASSINFO(Opal_RFC4175RGB_to_RGB24, OpalRFC4175Decoder); public: - Opal_RFC4175RGB_to_RGB24() : OpalRFC4175Decoder(OpalRGB24, OpalRFC4175RGB) { } + Opal_RFC4175RGB_to_RGB24() : OpalRFC4175Decoder(OpalRFC4175RGB, OpalRGB24) { } PINDEX GetPgroupSize() const { return 3; } PINDEX GetColsPerPgroup() const { return 1; } PINDEX GetRowsPerPgroup() const { return 1; } @@ -223,7 +229,7 @@ { PCLASSINFO(Opal_RGB24_to_RFC4175RGB, OpalRFC4175Encoder); public: - Opal_RGB24_to_RFC4175RGB() : OpalRFC4175Encoder(OpalRFC4175RGB, OpalRGB24) { } + Opal_RGB24_to_RFC4175RGB() : OpalRFC4175Encoder(OpalRGB24, OpalRFC4175RGB) { } PINDEX GetPgroupSize() const { return 3; } PINDEX GetColsPerPgroup() const { return 1; } PINDEX GetRowsPerPgroup() const { return 1; } @@ -232,7 +238,7 @@ PINDEX BytesToPixels(PINDEX bytes) const { return bytes / 3; } void StartEncoding(const RTP_DataFrame & input); - void EncodeFrames(); + void EndEncoding(); protected: BYTE * rgbBase; Modified: opal/trunk/samples/simple/main.cxx =================================================================== --- opal/trunk/samples/simple/main.cxx 2007-11-05 07:15:57 UTC (rev 18806) +++ opal/trunk/samples/simple/main.cxx 2007-11-05 08:01:18 UTC (rev 18807) @@ -536,6 +536,7 @@ "-display:" "-displaydriver:" "-video-size:" + "-video-rate:" #endif #if P_EXPAT "V-no-ivr." @@ -584,6 +585,7 @@ " --displaydriver dev : Set the video display driver (if device name is ambiguous).\n" " --video-size size : Set the size of the video for all video formats, use\n" " : \"qcif\", \"cif\", WxH etc\n" + " --video-rate rate : Set the frame rate of video for all video formats\n" "\n" #endif @@ -1204,22 +1206,28 @@ "Available codecs: " << allMediaFormats << setfill(' ') << endl; #if OPAL_VIDEO - if (args.HasOption("video-size")) { - PString sizeStr = args.GetOptionString("video-size"); - unsigned width, height; - if (PVideoFrameInfo::ParseSize(sizeStr, width, height)) { - OpalMediaFormat::GetAllRegisteredMediaFormats(allMediaFormats); - for (PINDEX i = 0; i < allMediaFormats.GetSize(); i++) { - OpalMediaFormat mediaFormat = allMediaFormats[i]; - if (mediaFormat.GetDefaultSessionID() == OpalMediaFormat::DefaultVideoSessionID) { - mediaFormat.SetOptionInteger(OpalVideoFormat::FrameWidthOption(), width); - mediaFormat.SetOptionInteger(OpalVideoFormat::FrameHeightOption(), height); - OpalMediaFormat::SetRegisteredMediaFormat(mediaFormat); + OpalMediaFormat::GetAllRegisteredMediaFormats(allMediaFormats); + for (PINDEX i = 0; i < allMediaFormats.GetSize(); i++) { + OpalMediaFormat mediaFormat = allMediaFormats[i]; + if (mediaFormat.GetDefaultSessionID() == OpalMediaFormat::DefaultVideoSessionID) { + if (args.HasOption("video-size")) { + PString sizeStr = args.GetOptionString("video-size"); + unsigned width, height; + if (PVideoFrameInfo::ParseSize(sizeStr, width, height)) { + mediaFormat.SetOptionInteger(OpalVideoFormat::FrameWidthOption(), width); + mediaFormat.SetOptionInteger(OpalVideoFormat::FrameHeightOption(), height); } + else + cerr << "Unknown video size \"" << sizeStr << '"' << endl; } + + if (args.HasOption("video-rate")) { + unsigned rate = args.GetOptionString("video-rate").AsUnsigned(); + unsigned frameTime = 1000 / rate; + mediaFormat.SetOptionInteger(OpalMediaFormat::FrameTimeOption(), frameTime); + } + OpalMediaFormat::SetRegisteredMediaFormat(mediaFormat); } - else - cerr << "Unknown video size \"" << sizeStr << '"' << endl; } #endif Modified: opal/trunk/src/codec/rfc4175.cxx =================================================================== --- opal/trunk/src/codec/rfc4175.cxx 2007-11-05 07:15:57 UTC (rev 18806) +++ opal/trunk/src/codec/rfc4175.cxx 2007-11-05 08:01:18 UTC (rev 18807) @@ -27,6 +27,10 @@ * Revision 1.12 2007/10/03 04:06:33 csoutheren * Add missing #pragma * + * Revision 1.11.6.1 2007/10/10 06:54:36 csoutheren + * Updates to RFC4175 to deal with transmission over a wire + * Not finished yet :) + * * Revision 1.11 2007/09/12 05:55:35 csoutheren * Fixed SIP fmtp options for rfc 4175 * @@ -190,6 +194,8 @@ BOOL OpalRFC4175Encoder::ConvertFrames(const RTP_DataFrame & input, RTP_DataFrameList & _outputFrames) { + _outputFrames.RemoveAll(); + PAssert(sizeof(ScanLineHeader) == 6, "ScanLineHeader is not packed"); // make sure the incoming frame is big enough for a frame header @@ -226,7 +232,7 @@ EncodeFullFrame(); // grab the actual data - EncodeFrames(); + EndEncoding(); return TRUE; } @@ -257,6 +263,8 @@ // calculate how many pixels we can add PINDEX pixelsToAdd = PMIN((roomLeft - (PINDEX)sizeof(ScanLineHeader)) / GetPgroupSize(), endX - x); + PAssert(pixelsToAdd > 0, "how did we get negative pixels?"); + // populate the scan line table dstScanLineTable->length = (WORD)pixelsToAdd; dstScanLineTable->y = (WORD)y; @@ -294,7 +302,7 @@ void OpalRFC4175Encoder::FinishOutputFrame() { - if (dstFrames->GetSize() != 0 && (dstScanLineCount > 0)) { + if ((dstFrames->GetSize() > 0) && (dstScanLineCount > 0)) { // populate the frame fields RTP_DataFrame & dst = (*dstFrames)[dstFrames->GetSize()-1]; @@ -303,8 +311,9 @@ --dstScanLineTable; dstScanLineTable->offset = (WORD)dstScanLineTable->offset | 0x8000; - // set the timestamp + // set the timestamp and payload type dst.SetTimestamp(srcTimestamp); + dst.SetPayloadType(outputMediaFormat.GetPayloadType()); // set and increment the sequence number dst.SetSequenceNumber((WORD)(extendedSequenceNumber & 0xffff)); @@ -327,12 +336,13 @@ ) : OpalRFC4175Transcoder(inputMediaFormat, outputMediaFormat) { inputFrames.AllowDeleteObjects(); + first = TRUE; + waitingForMarker = FALSE; Initialise(); } OpalRFC4175Decoder::~OpalRFC4175Decoder() { - first = TRUE; } BOOL OpalRFC4175Decoder::Initialise() @@ -343,11 +353,15 @@ inputFrames.RemoveAll(); scanlineCounts.resize(0); + packetCount = 0; + return TRUE; } BOOL OpalRFC4175Decoder::ConvertFrames(const RTP_DataFrame & input, RTP_DataFrameList & output) { + output.RemoveAll(); + PAssert(sizeof(ScanLineHeader) == 6, "ScanLineHeader is not packed"); // do quick sanity check on packet @@ -359,82 +373,93 @@ // get extended sequence number DWORD receivedSeqNo = input.GetSequenceNumber() | ((*(PUInt16b *)input.GetPayloadPtr()) << 16); - BOOL ok = TRUE; - // special handling for first packet if (first) { lastSequenceNumber = receivedSeqNo; lastTimeStamp = input.GetTimestamp(); first = FALSE; } - else { - // if timestamp changed, we lost the marker bit on the previous input frame - // so, flush the output and change to the new timestamp - if ((input.GetTimestamp() != lastTimeStamp) && (inputFrames.GetSize() > 0)) { - PTRACE(2, "RFC4175\tDetected change of timestamp - marker bit lost"); - DecodeFrames(output); + + // if waiting for a marker bit to resync, keep waiting + else if (waitingForMarker) { + if (!input.GetMarker()) { + PTRACE(1,"RFC4175\tignoring frame while waiting for marker bit"); + } else { + PTRACE(1,"RFC4175\tmarker bit received - starting new frame"); + first = TRUE; + lastTimeStamp = input.GetTimestamp(); + lastSequenceNumber = receivedSeqNo; } - lastTimeStamp = input.GetTimestamp(); + return TRUE; + } - // if packet is out of sequence, determine if to ignore packet or accept it and update sequence number - ++lastSequenceNumber; - if (lastSequenceNumber != receivedSeqNo) { - ok = receivedSeqNo > lastSequenceNumber; - if (!ok && ((lastSequenceNumber - receivedSeqNo) > 0xfffffc00)) { - ok = TRUE; - lastSequenceNumber = receivedSeqNo; + else if (!input.GetMarker() && (inputFrames.GetSize() > 0)) { + // if timestamp changed, marker bit lost on previous input frame + DWORD timeStamp = input.GetTimestamp(); + if (timeStamp != lastTimeStamp) { + PTRACE(2, "RFC4175\tDetected change of timestamp (" << lastTimeStamp << " vs " << timeStamp << ") after " << packetCount << " packets - discarding frame"); + lastSequenceNumber = receivedSeqNo; + lastTimeStamp = timeStamp; + Initialise(); + } + + // if sequence number is not sequential, then frame is not complete + else { + ++lastSequenceNumber; + if (lastSequenceNumber != receivedSeqNo) { + PTRACE(2, "RFC4175\tDetected lost frame after " << packetCount << " packets - flushing until next marker bit"); + Initialise(); + waitingForMarker = TRUE; + return TRUE; } - PTRACE(2, "RFC4175\t" << (ok ? "Accepting" : "Ignoring") << " out of order packet"); } } + ++packetCount; + // make a pass through the scan line table and update the overall frame width and height PINDEX lineCount = 0; - if (ok) { - ScanLineHeader * scanLinePtr = (ScanLineHeader *)(input.GetPayloadPtr() + 2); + ScanLineHeader * scanLinePtr = (ScanLineHeader *)(input.GetPayloadPtr() + 2); - BOOL lastLine = FALSE; - while (!lastLine && RFC4175HeaderSize(lineCount+1) < input.GetPayloadSize()) { + BOOL lastLine = FALSE; + while (!lastLine && RFC4175HeaderSize(lineCount+1) < input.GetPayloadSize()) { - // scan line length - PINDEX lineLength = scanLinePtr->length; + // scan line length + PINDEX lineLength = scanLinePtr->length; - // line number - WORD lineNumber = scanLinePtr->y & 0x7fff; + // line number + WORD lineNumber = scanLinePtr->y & 0x7fff; - // pixel offset of scanline start - WORD offset = scanLinePtr->offset; + // pixel offset of scanline start + WORD offset = scanLinePtr->offset; - // detect if last scanline in table - if (offset & 0x8000) { - lastLine = TRUE; - offset &= 0x7fff; - } + // detect if last scanline in table + if (offset & 0x8000) { + lastLine = TRUE; + offset &= 0x7fff; + } - // update frame width and height - PINDEX right = offset + lineLength; - if (right > frameWidth) - frameWidth = right; - PINDEX bottom = lineNumber+2; - if (bottom > frameHeight) - frameHeight = bottom; + // update frame width and height + PINDEX right = offset + lineLength; + if (right > frameWidth) + frameWidth = right; + PINDEX bottom = lineNumber+2; + if (bottom > frameHeight) + frameHeight = bottom; - // count lines - ++lineCount; + // count lines + ++lineCount; - // update scan line pointer - ++scanLinePtr; - } + // update scan line pointer + ++scanLinePtr; } - // add the frame to the input frame list, if OK - if (ok) { - inputFrames.Append(new RTP_DataFrame(input)); - scanlineCounts.push_back(lineCount); - } + // add the frame to the input frame list + inputFrames.Append(new RTP_DataFrame(input)); + scanlineCounts.push_back(lineCount); - // if marker bit not set, keep collecting frames + // if marker set, decode the frames if (input.GetMarker()) DecodeFrames(output); @@ -451,7 +476,7 @@ srcCrPlane = srcCbPlane + (frameWidth * frameHeight / 4); } -void Opal_YUV420P_to_RFC4175YCbCr420::EncodeFrames() +void Opal_YUV420P_to_RFC4175YCbCr420::EndEncoding() { FinishOutputFrame(); @@ -502,12 +527,18 @@ return FALSE; } - PTRACE(4, "RFC4175\tDecoding output from from " << inputFrames.GetSize() << " input frames"); + if (frameHeight != 144 || frameWidth != 176) { + int s = inputFrames.GetSize(); + PTRACE(4, "not right frame " << s); + } + PTRACE(4, "RFC4175\tDecoding output from " << inputFrames.GetSize() << " input frames"); + // allocate destination frame output.Append(new RTP_DataFrame()); RTP_DataFrame & outputFrame = output[output.GetSize()-1]; outputFrame.SetMarker(TRUE); + outputFrame.SetPayloadType(outputMediaFormat.GetPayloadType()); outputFrame.SetPayloadSize(sizeof(PluginCodec_Video_FrameHeader) + PixelsToBytes(frameWidth*frameHeight)); // get pointer to header and payload @@ -584,11 +615,11 @@ rgbBase = input.GetPayloadPtr() + sizeof(PluginCodec_Video_FrameHeader); } -void Opal_RGB24_to_RFC4175RGB::EncodeFrames() +void Opal_RGB24_to_RFC4175RGB::EndEncoding() { FinishOutputFrame(); - PTRACE(4, "RFC4175\tEncoded RGB24 input frame to " << dstFrames->GetSize() << " RFC4175 output frames in RGB format"); + PTRACE(4, "RFC4175\tEncoded RGB24 input frame to " << (dstFrames->GetSize()) << " RFC4175 output frames in RGB format"); PINDEX f, i; for (f = 0; f < dstFrames->GetSize(); ++f) { @@ -624,7 +655,7 @@ return FALSE; } - PTRACE(4, "RFC4175\tDecoding output from from " << inputFrames.GetSize() << " input frames"); + PTRACE(4, "RFC4175\tDecoding output from " << inputFrames.GetSize() << " input frames"); // allocate destination frame output.Append(new RTP_DataFrame()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cso...@us...> - 2007-11-05 07:16:04
|
Revision: 18806 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18806&view=rev Author: csoutheren Date: 2007-11-04 23:15:57 -0800 (Sun, 04 Nov 2007) Log Message: ----------- Further debugging of on-the-wire RFC4175 Modified Paths: -------------- opal/branches/csoutheren/rfc4175_devel/include/codec/rfc4175.h opal/branches/csoutheren/rfc4175_devel/src/codec/rfc4175.cxx Modified: opal/branches/csoutheren/rfc4175_devel/include/codec/rfc4175.h =================================================================== --- opal/branches/csoutheren/rfc4175_devel/include/codec/rfc4175.h 2007-11-05 07:10:28 UTC (rev 18805) +++ opal/branches/csoutheren/rfc4175_devel/include/codec/rfc4175.h 2007-11-05 07:15:57 UTC (rev 18806) @@ -115,7 +115,7 @@ protected: virtual void StartEncoding(const RTP_DataFrame & input); - virtual void EncodeFrames() = 0; + virtual void EndEncoding() = 0; void EncodeFullFrame(); void EncodeScanLineSegment(PINDEX y, PINDEX offs, PINDEX width); @@ -165,6 +165,7 @@ DWORD lastSequenceNumber; DWORD lastTimeStamp; BOOL waitingForMarker; + PINDEX packetCount; }; ///////////////////////////////////////////////////////////////////////////// @@ -175,7 +176,7 @@ { PCLASSINFO(Opal_RFC4175YCbCr420_to_YUV420P, OpalRFC4175Decoder); public: - Opal_RFC4175YCbCr420_to_YUV420P() : OpalRFC4175Decoder(OpalYUV420P, OpalRFC4175YCbCr420) { } + Opal_RFC4175YCbCr420_to_YUV420P() : OpalRFC4175Decoder(OpalRFC4175YCbCr420, OpalYUV420P) { } PINDEX GetPgroupSize() const { return 6; } PINDEX GetColsPerPgroup() const { return 2; } PINDEX GetRowsPerPgroup() const { return 2; } @@ -190,7 +191,7 @@ { PCLASSINFO(Opal_YUV420P_to_RFC4175YCbCr420, OpalRFC4175Encoder); public: - Opal_YUV420P_to_RFC4175YCbCr420() : OpalRFC4175Encoder(OpalRFC4175YCbCr420, OpalYUV420P) { } + Opal_YUV420P_to_RFC4175YCbCr420() : OpalRFC4175Encoder(OpalYUV420P, OpalRFC4175YCbCr420) { } PINDEX GetPgroupSize() const { return 6; } PINDEX GetColsPerPgroup() const { return 2; } PINDEX GetRowsPerPgroup() const { return 2; } @@ -199,7 +200,7 @@ PINDEX BytesToPixels(PINDEX bytes) const { return bytes * 8 / 12; } void StartEncoding(const RTP_DataFrame & input); - void EncodeFrames(); + void EndEncoding(); protected: BYTE * srcYPlane; @@ -213,7 +214,7 @@ { PCLASSINFO(Opal_RFC4175RGB_to_RGB24, OpalRFC4175Decoder); public: - Opal_RFC4175RGB_to_RGB24() : OpalRFC4175Decoder(OpalRGB24, OpalRFC4175RGB) { } + Opal_RFC4175RGB_to_RGB24() : OpalRFC4175Decoder(OpalRFC4175RGB, OpalRGB24) { } PINDEX GetPgroupSize() const { return 3; } PINDEX GetColsPerPgroup() const { return 1; } PINDEX GetRowsPerPgroup() const { return 1; } @@ -228,7 +229,7 @@ { PCLASSINFO(Opal_RGB24_to_RFC4175RGB, OpalRFC4175Encoder); public: - Opal_RGB24_to_RFC4175RGB() : OpalRFC4175Encoder(OpalRFC4175RGB, OpalRGB24) { } + Opal_RGB24_to_RFC4175RGB() : OpalRFC4175Encoder(OpalRGB24, OpalRFC4175RGB) { } PINDEX GetPgroupSize() const { return 3; } PINDEX GetColsPerPgroup() const { return 1; } PINDEX GetRowsPerPgroup() const { return 1; } @@ -237,7 +238,7 @@ PINDEX BytesToPixels(PINDEX bytes) const { return bytes / 3; } void StartEncoding(const RTP_DataFrame & input); - void EncodeFrames(); + void EndEncoding(); protected: BYTE * rgbBase; Modified: opal/branches/csoutheren/rfc4175_devel/src/codec/rfc4175.cxx =================================================================== --- opal/branches/csoutheren/rfc4175_devel/src/codec/rfc4175.cxx 2007-11-05 07:10:28 UTC (rev 18805) +++ opal/branches/csoutheren/rfc4175_devel/src/codec/rfc4175.cxx 2007-11-05 07:15:57 UTC (rev 18806) @@ -194,10 +194,10 @@ BOOL OpalRFC4175Encoder::ConvertFrames(const RTP_DataFrame & input, RTP_DataFrameList & _outputFrames) { + _outputFrames.RemoveAll(); + PAssert(sizeof(ScanLineHeader) == 6, "ScanLineHeader is not packed"); - _outputFrames.RemoveAll(); - // make sure the incoming frame is big enough for a frame header if (input.GetPayloadSize() < (int)(sizeof(PluginCodec_Video_FrameHeader))) { PTRACE(1,"RFC4175\tPayload of grabbed frame too small for frame header"); @@ -232,7 +232,7 @@ EncodeFullFrame(); // grab the actual data - EncodeFrames(); + EndEncoding(); return TRUE; } @@ -353,17 +353,19 @@ inputFrames.RemoveAll(); scanlineCounts.resize(0); + packetCount = 0; + return TRUE; } BOOL OpalRFC4175Decoder::ConvertFrames(const RTP_DataFrame & input, RTP_DataFrameList & output) { + output.RemoveAll(); + PAssert(sizeof(ScanLineHeader) == 6, "ScanLineHeader is not packed"); - output.RemoveAll(); - // do quick sanity check on packet - if (input.GetPayloadSize() > 2) { + if (input.GetPayloadSize() < 2) { PTRACE(1,"RFC4175\tinput frame too small for header"); return FALSE; } @@ -385,31 +387,36 @@ } else { PTRACE(1,"RFC4175\tmarker bit received - starting new frame"); first = TRUE; + lastTimeStamp = input.GetTimestamp(); + lastSequenceNumber = receivedSeqNo; } return TRUE; } - else { - // if timestamp changed and we still have input data, then we lost the marker bit on the previous input frame + else if (!input.GetMarker() && (inputFrames.GetSize() > 0)) { + // if timestamp changed, marker bit lost on previous input frame DWORD timeStamp = input.GetTimestamp(); - if ((timeStamp != lastTimeStamp) && (inputFrames.GetSize() > 0)) { - PTRACE(2, "RFC4175\tDetected change of timestamp - flushing until next marker bit"); + if (timeStamp != lastTimeStamp) { + PTRACE(2, "RFC4175\tDetected change of timestamp (" << lastTimeStamp << " vs " << timeStamp << ") after " << packetCount << " packets - discarding frame"); + lastSequenceNumber = receivedSeqNo; + lastTimeStamp = timeStamp; Initialise(); - waitingForMarker = TRUE; - return TRUE; } - lastTimeStamp = input.GetTimestamp(); // if sequence number is not sequential, then frame is not complete - ++lastSequenceNumber; - if (lastSequenceNumber != receivedSeqNo) { - PTRACE(2, "RFC4175\tDetected lost frame - flushing until next marker bit"); - Initialise(); - waitingForMarker = TRUE; - return TRUE; + else { + ++lastSequenceNumber; + if (lastSequenceNumber != receivedSeqNo) { + PTRACE(2, "RFC4175\tDetected lost frame after " << packetCount << " packets - flushing until next marker bit"); + Initialise(); + waitingForMarker = TRUE; + return TRUE; + } } } + ++packetCount; + // make a pass through the scan line table and update the overall frame width and height PINDEX lineCount = 0; @@ -452,7 +459,7 @@ inputFrames.Append(new RTP_DataFrame(input)); scanlineCounts.push_back(lineCount); - // if marker bit not set, keep collecting frames + // if marker set, decode the frames if (input.GetMarker()) DecodeFrames(output); @@ -469,7 +476,7 @@ srcCrPlane = srcCbPlane + (frameWidth * frameHeight / 4); } -void Opal_YUV420P_to_RFC4175YCbCr420::EncodeFrames() +void Opal_YUV420P_to_RFC4175YCbCr420::EndEncoding() { FinishOutputFrame(); @@ -525,7 +532,7 @@ PTRACE(4, "not right frame " << s); } - PTRACE(4, "RFC4175\tDecoding output from from " << inputFrames.GetSize() << " input frames"); + PTRACE(4, "RFC4175\tDecoding output from " << inputFrames.GetSize() << " input frames"); // allocate destination frame output.Append(new RTP_DataFrame()); @@ -608,7 +615,7 @@ rgbBase = input.GetPayloadPtr() + sizeof(PluginCodec_Video_FrameHeader); } -void Opal_RGB24_to_RFC4175RGB::EncodeFrames() +void Opal_RGB24_to_RFC4175RGB::EndEncoding() { FinishOutputFrame(); @@ -648,7 +655,7 @@ return FALSE; } - PTRACE(4, "RFC4175\tDecoding output from from " << inputFrames.GetSize() << " input frames"); + PTRACE(4, "RFC4175\tDecoding output from " << inputFrames.GetSize() << " input frames"); // allocate destination frame output.Append(new RTP_DataFrame()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cso...@us...> - 2007-11-05 07:10:26
|
Revision: 18805 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18805&view=rev Author: csoutheren Date: 2007-11-04 23:10:28 -0800 (Sun, 04 Nov 2007) Log Message: ----------- Add ability to set video frame rate Modified Paths: -------------- opal/branches/csoutheren/rfc4175_devel/samples/simple/main.cxx Modified: opal/branches/csoutheren/rfc4175_devel/samples/simple/main.cxx =================================================================== --- opal/branches/csoutheren/rfc4175_devel/samples/simple/main.cxx 2007-11-05 05:51:03 UTC (rev 18804) +++ opal/branches/csoutheren/rfc4175_devel/samples/simple/main.cxx 2007-11-05 07:10:28 UTC (rev 18805) @@ -536,6 +536,7 @@ "-display:" "-displaydriver:" "-video-size:" + "-video-rate:" #endif #if P_EXPAT "V-no-ivr." @@ -584,6 +585,7 @@ " --displaydriver dev : Set the video display driver (if device name is ambiguous).\n" " --video-size size : Set the size of the video for all video formats, use\n" " : \"qcif\", \"cif\", WxH etc\n" + " --video-rate rate : Set the frame rate of video for all video formats\n" "\n" #endif @@ -1204,22 +1206,28 @@ "Available codecs: " << allMediaFormats << setfill(' ') << endl; #if OPAL_VIDEO - if (args.HasOption("video-size")) { - PString sizeStr = args.GetOptionString("video-size"); - unsigned width, height; - if (PVideoFrameInfo::ParseSize(sizeStr, width, height)) { - OpalMediaFormat::GetAllRegisteredMediaFormats(allMediaFormats); - for (PINDEX i = 0; i < allMediaFormats.GetSize(); i++) { - OpalMediaFormat mediaFormat = allMediaFormats[i]; - if (mediaFormat.GetDefaultSessionID() == OpalMediaFormat::DefaultVideoSessionID) { - mediaFormat.SetOptionInteger(OpalVideoFormat::FrameWidthOption(), width); - mediaFormat.SetOptionInteger(OpalVideoFormat::FrameHeightOption(), height); - OpalMediaFormat::SetRegisteredMediaFormat(mediaFormat); + OpalMediaFormat::GetAllRegisteredMediaFormats(allMediaFormats); + for (PINDEX i = 0; i < allMediaFormats.GetSize(); i++) { + OpalMediaFormat mediaFormat = allMediaFormats[i]; + if (mediaFormat.GetDefaultSessionID() == OpalMediaFormat::DefaultVideoSessionID) { + if (args.HasOption("video-size")) { + PString sizeStr = args.GetOptionString("video-size"); + unsigned width, height; + if (PVideoFrameInfo::ParseSize(sizeStr, width, height)) { + mediaFormat.SetOptionInteger(OpalVideoFormat::FrameWidthOption(), width); + mediaFormat.SetOptionInteger(OpalVideoFormat::FrameHeightOption(), height); } + else + cerr << "Unknown video size \"" << sizeStr << '"' << endl; } + + if (args.HasOption("video-rate")) { + unsigned rate = args.GetOptionString("video-rate").AsUnsigned(); + unsigned frameTime = 1000 / rate; + mediaFormat.SetOptionInteger(OpalMediaFormat::FrameTimeOption(), frameTime); + } + OpalMediaFormat::SetRegisteredMediaFormat(mediaFormat); } - else - cerr << "Unknown video size \"" << sizeStr << '"' << endl; } #endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rjo...@us...> - 2007-11-05 05:51:01
|
Revision: 18804 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18804&view=rev Author: rjongbloed Date: 2007-11-04 21:51:03 -0800 (Sun, 04 Nov 2007) Log Message: ----------- Plug in suffix changed from pwplugin to ptplugin Modified Paths: -------------- opal/trunk/plugins/LID/CAPI/CAPI_2005.vcproj opal/trunk/plugins/LID/IxJ/IxJ_2005.vcproj opal/trunk/plugins/LID/TigerJet/TJ_2005.vcproj opal/trunk/plugins/LID/USB/USB_2005.vcproj opal/trunk/plugins/LID/VPB/VPB_2005.vcproj opal/trunk/plugins/audio/EasyCodec/EasyG7231_2005.vcproj opal/trunk/plugins/audio/EasyCodec/EasyG728_2005.vcproj opal/trunk/plugins/audio/EasyCodec/EasyG729A_2005.vcproj opal/trunk/plugins/audio/G726/G726_2005.vcproj opal/trunk/plugins/audio/GSM0610/gsm0610_2005.vcproj opal/trunk/plugins/audio/IMA_ADPCM/IMA_ADPCM_2005.vcproj opal/trunk/plugins/audio/LPC_10/LPC_10_2005.vcproj opal/trunk/plugins/audio/Speex/Speex_2005.vcproj opal/trunk/plugins/audio/VoiceAgeG729/VoiceAgeG729_2005.vcproj opal/trunk/plugins/audio/gsm-amr/gsmamr_2005.vcproj opal/trunk/plugins/audio/iLBC/ilbccodec_2005.vcproj opal/trunk/plugins/video/H.261-vic/h261vic_2005.vcproj opal/trunk/plugins/video/H.263-ffmpeg/h263ffmpeg_2005.vcproj Modified: opal/trunk/plugins/LID/CAPI/CAPI_2005.vcproj =================================================================== --- opal/trunk/plugins/LID/CAPI/CAPI_2005.vcproj 2007-11-05 05:48:56 UTC (rev 18803) +++ opal/trunk/plugins/LID/CAPI/CAPI_2005.vcproj 2007-11-05 05:51:03 UTC (rev 18804) @@ -70,7 +70,7 @@ <Tool Name="VCLinkerTool" IgnoreImportLibrary="false" - OutputFile="$(OutDir)/capi_lid_pwplugin.dll" + OutputFile="$(OutDir)/capi_lid_ptplugin.dll" LinkIncremental="1" SuppressStartupBanner="true" GenerateDebugInformation="true" @@ -102,7 +102,7 @@ <Tool Name="VCPostBuildEventTool" Description="Copying codec and debug information to plug in directory" - CommandLine="if not exist c:\ptlib_plugins exit
copy $(TargetPath) c:\ptlib_plugins
copy $(TargetDir)\$(TargetName).pdb c:\ptlib_plugins" + CommandLine="if not exist c:\ptlib_plugins exit
copy $(TargetPath) c:\ptlib_plugins
copy $(TargetDir)\$(TargetName).pdb c:\ptlib_plugins
" /> </Configuration> <Configuration @@ -161,7 +161,7 @@ /> <Tool Name="VCLinkerTool" - OutputFile="$(OutDir)/capi_lid_pwplugin.dll" + OutputFile="$(OutDir)/capi_lid_ptplugin.dll" LinkIncremental="1" SuppressStartupBanner="true" ImportLibrary="$(IntDir)\$(TargetName).lib" Modified: opal/trunk/plugins/LID/IxJ/IxJ_2005.vcproj =================================================================== --- opal/trunk/plugins/LID/IxJ/IxJ_2005.vcproj 2007-11-05 05:48:56 UTC (rev 18803) +++ opal/trunk/plugins/LID/IxJ/IxJ_2005.vcproj 2007-11-05 05:51:03 UTC (rev 18804) @@ -1,229 +1,229 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="8.00" - Name="IxJ LID" - ProjectGUID="{2F7CD8F0-30C8-4B70-A807-E13472EE23CA}" - > - <Platforms> - <Platform - Name="Win32" - /> - </Platforms> - <ToolFiles> - </ToolFiles> - <Configurations> - <Configuration - Name="Debug|Win32" - OutputDirectory="..\..\Debug" - IntermediateDirectory="..\..\Debug\IxJ" - ConfigurationType="2" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="_DEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\Debug/IxJ.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS" - BasicRuntimeChecks="3" - RuntimeLibrary="3" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="false" - AdditionalDependencies="ptlibsd.lib winmm.lib" - OutputFile="$(OutDir)/$(ProjectName)_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - GenerateDebugInformation="true" - ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" - ImportLibrary="$(IntDir)\$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="Release|Win32" - OutputDirectory="..\..\Release" - IntermediateDirectory="..\..\Release\IxJ" - ConfigurationType="2" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="NDEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\Release/IxJ.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL" - StringPooling="true" - RuntimeLibrary="2" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - AdditionalDependencies="ptlibs.lib winmm.lib" - OutputFile="$(OutDir)/$(ProjectName)_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - ImportLibrary="$(IntDir)\$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <Filter - Name="Source Files" - Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - > - <File - RelativePath="ixj_win.cpp" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - </Filter> - </Files> - <Globals> - </Globals> -</VisualStudioProject> +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="IxJ LID" + ProjectGUID="{2F7CD8F0-30C8-4B70-A807-E13472EE23CA}" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + OutputDirectory="..\..\Debug" + IntermediateDirectory="..\..\Debug\IxJ" + ConfigurationType="2" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="_DEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName=".\Debug/IxJ.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS" + BasicRuntimeChecks="3" + RuntimeLibrary="3" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + IgnoreImportLibrary="false" + AdditionalDependencies="ptlibsd.lib winmm.lib" + OutputFile="$(OutDir)/$(ProjectName)_ptplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" + ImportLibrary="$(IntDir)\$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + OutputDirectory="..\..\Release" + IntermediateDirectory="..\..\Release\IxJ" + ConfigurationType="2" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="NDEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName=".\Release/IxJ.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + InlineFunctionExpansion="1" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL" + StringPooling="true" + RuntimeLibrary="2" + EnableFunctionLevelLinking="true" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + AdditionalDependencies="ptlibs.lib winmm.lib" + OutputFile="$(OutDir)/$(ProjectName)_ptplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + ImportLibrary="$(IntDir)\$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="Source Files" + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + <File + RelativePath="ixj_win.cpp" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> Modified: opal/trunk/plugins/LID/TigerJet/TJ_2005.vcproj =================================================================== --- opal/trunk/plugins/LID/TigerJet/TJ_2005.vcproj 2007-11-05 05:48:56 UTC (rev 18803) +++ opal/trunk/plugins/LID/TigerJet/TJ_2005.vcproj 2007-11-05 05:51:03 UTC (rev 18804) @@ -1,229 +1,229 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="8.00" - Name="TigerJet LID" - ProjectGUID="{9A4E2793-1D97-4B0C-BCFD-130136990E35}" - > - <Platforms> - <Platform - Name="Win32" - /> - </Platforms> - <ToolFiles> - </ToolFiles> - <Configurations> - <Configuration - Name="Debug|Win32" - OutputDirectory="..\..\Debug" - IntermediateDirectory="..\..\Debug\TigerJet" - ConfigurationType="2" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="_DEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName="$(IntDir)/$(TargetName).tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL" - BasicRuntimeChecks="3" - RuntimeLibrary="1" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="false" - AdditionalDependencies="winmm.lib" - OutputFile="$(OutDir)/tj_lid_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - GenerateDebugInformation="true" - ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" - ImportLibrary="$(IntDir)\$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="Release|Win32" - OutputDirectory="..\..\Release" - IntermediateDirectory="..\..\Release\TigerJet" - ConfigurationType="2" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="NDEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName="$(IntDir)/$(TargetName).tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL" - StringPooling="true" - RuntimeLibrary="0" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - AdditionalDependencies="winmm.lib" - OutputFile="$(OutDir)/tj_lid_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - ImportLibrary="$(IntDir)\$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <Filter - Name="Source Files" - Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - > - <File - RelativePath="tj_win.cpp" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - </Filter> - </Files> - <Globals> - </Globals> -</VisualStudioProject> +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="TigerJet LID" + ProjectGUID="{9A4E2793-1D97-4B0C-BCFD-130136990E35}" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + OutputDirectory="..\..\Debug" + IntermediateDirectory="..\..\Debug\TigerJet" + ConfigurationType="2" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="_DEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName="$(IntDir)/$(TargetName).tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL" + BasicRuntimeChecks="3" + RuntimeLibrary="1" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + IgnoreImportLibrary="false" + AdditionalDependencies="winmm.lib" + OutputFile="$(OutDir)/tj_lid_ptplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" + ImportLibrary="$(IntDir)\$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + OutputDirectory="..\..\Release" + IntermediateDirectory="..\..\Release\TigerJet" + ConfigurationType="2" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="NDEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName="$(IntDir)/$(TargetName).tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + InlineFunctionExpansion="1" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL" + StringPooling="true" + RuntimeLibrary="0" + EnableFunctionLevelLinking="true" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + AdditionalDependencies="winmm.lib" + OutputFile="$(OutDir)/tj_lid_ptplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + ImportLibrary="$(IntDir)\$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="Source Files" + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + <File + RelativePath="tj_win.cpp" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> Modified: opal/trunk/plugins/LID/USB/USB_2005.vcproj =================================================================== --- opal/trunk/plugins/LID/USB/USB_2005.vcproj 2007-11-05 05:48:56 UTC (rev 18803) +++ opal/trunk/plugins/LID/USB/USB_2005.vcproj 2007-11-05 05:51:03 UTC (rev 18804) @@ -1,229 +1,229 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="8.00" - Name="USB HID LID" - ProjectGUID="{3FCBA070-C605-4EE5-B078-E2461F792B36}" - > - <Platforms> - <Platform - Name="Win32" - /> - </Platforms> - <ToolFiles> - </ToolFiles> - <Configurations> - <Configuration - Name="Debug|Win32" - OutputDirectory="..\..\Debug" - IntermediateDirectory="..\..\Debug\USB" - ConfigurationType="2" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="_DEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\Debug/USB.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL" - BasicRuntimeChecks="3" - RuntimeLibrary="1" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="false" - AdditionalDependencies="CM_HID.lib winmm.lib" - OutputFile="$(OutDir)/$(ProjectName)_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - GenerateDebugInformation="true" - ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" - ImportLibrary="$(IntDir)\$(ProjectName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="Release|Win32" - OutputDirectory="..\..\Release" - IntermediateDirectory="..\..\Release\USB" - ConfigurationType="2" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="NDEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\Release/USB.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL" - StringPooling="true" - RuntimeLibrary="0" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - AdditionalDependencies="CM_HID.lib winmm.lib" - OutputFile="$(OutDir)/$(ProjectName)_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - ImportLibrary="$(IntDir)\$(ProjectName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <Filter - Name="Source Files" - Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - > - <File - RelativePath="usb_win.cpp" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - </Filter> - </Files> - <Globals> - </Globals> -</VisualStudioProject> +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="USB HID LID" + ProjectGUID="{3FCBA070-C605-4EE5-B078-E2461F792B36}" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + OutputDirectory="..\..\Debug" + IntermediateDirectory="..\..\Debug\USB" + ConfigurationType="2" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="_DEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName=".\Debug/USB.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL" + BasicRuntimeChecks="3" + RuntimeLibrary="1" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + IgnoreImportLibrary="false" + AdditionalDependencies="CM_HID.lib winmm.lib" + OutputFile="$(OutDir)/$(ProjectName)_ptplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" + ImportLibrary="$(IntDir)\$(ProjectName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + OutputDirectory="..\..\Release" + IntermediateDirectory="..\..\Release\USB" + ConfigurationType="2" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="NDEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName=".\Release/USB.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + InlineFunctionExpansion="1" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL" + StringPooling="true" + RuntimeLibrary="0" + EnableFunctionLevelLinking="true" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + AdditionalDependencies="CM_HID.lib winmm.lib" + OutputFile="$(OutDir)/$(ProjectName)_ptplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + ImportLibrary="$(IntDir)\$(ProjectName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="Source Files" + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + <File + RelativePath="usb_win.cpp" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> Modified: opal/trunk/plugins/LID/VPB/VPB_2005.vcproj =================================================================== --- opal/trunk/plugins/LID/VPB/VPB_2005.vcproj 2007-11-05 05:48:56 UTC (rev 18803) +++ opal/trunk/plugins/LID/VPB/VPB_2005.vcproj 2007-11-05 05:51:03 UTC (rev 18804) @@ -1,227 +1,227 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="8.00" - Name="VPB LID" - ProjectGUID="{EE028C0B-AF72-499F-A778-82C3645A90DB}" - > - <Platforms> - <Platform - Name="Win32" - /> - </Platforms> - <ToolFiles> - </ToolFiles> - <Configurations> - <Configuration - Name="Debug|Win32" - OutputDirectory="..\..\Debug" - IntermediateDirectory="..\..\Debug\VPB" - ConfigurationType="2" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="_DEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\Debug/VPB.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL" - BasicRuntimeChecks="3" - RuntimeLibrary="1" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="false" - OutputFile="$(OutDir)/$(ProjectName)_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - GenerateDebugInformation="true" - ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" - ImportLibrary="$(IntDir)\$(ProjectName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="Release|Win32" - OutputDirectory="..\..\Release" - IntermediateDirectory="..\..\Release\VPB" - ConfigurationType="2" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="NDEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\Release/VPB.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL" - StringPooling="true" - RuntimeLibrary="0" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - OutputFile="$(OutDir)/$(ProjectName)_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - ImportLibrary="$(IntDir)\$(ProjectName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <Filter - Name="Source Files" - Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - > - <File - RelativePath="vpb.cpp" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - </Filter> - </Files> - <Globals> - </Globals> -</VisualStudioProject> +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="VPB LID" + ProjectGUID="{EE028C0B-AF72-499F-A778-82C3645A90DB}" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + OutputDirectory="..\..\Debug" + IntermediateDirectory="..\..\Debug\VPB" + ConfigurationType="2" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="_DEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName=".\Debug/VPB.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL" + BasicRuntimeChecks="3" + RuntimeLibrary="1" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + IgnoreImportLibrary="false" + OutputFile="$(OutDir)/$(ProjectName)_ptplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" + ImportLibrary="$(IntDir)\$(ProjectName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + OutputDirectory="..\..\Release" + IntermediateDirectory="..\..\Release\VPB" + ConfigurationType="2" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="NDEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName=".\Release/VPB.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + InlineFunctionExpansion="1" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL" + StringPooling="true" + RuntimeLibrary="0" + EnableFunctionLevelLinking="true" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + OutputFile="$(OutDir)/$(ProjectName)_ptplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + ImportLibrary="$(IntDir)\$(ProjectName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="Source Files" + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + <File + RelativePath="vpb.cpp" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> Modified: opal/trunk/plugins/audio/EasyCodec/EasyG7231_2005.vcproj =================================================================== --- opal/trunk/plugins/audio/EasyCodec/EasyG7231_2005.vcproj 2007-11-05 05:48:56 UTC (rev 18803) +++ opal/trunk/plugins/audio/EasyCodec/EasyG7231_2005.vcproj 2007-11-05 05:51:03 UTC (rev 18804) @@ -1,248 +1,248 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="8.00" - Name="EasyG7231 Audio Codec" - ProjectGUID="{7CF86525-9E45-4C67-93DC-5959F1E571AE}" - > - <Platforms> - <Platform - Name="Win32" - /> - </Platforms> - <ToolFiles> - </ToolFiles> - <Configurations> - <Configuration - Name="Debug|Win32" - OutputDirectory="..\..\Debug" - IntermediateDirectory="..\..\Debug\EasyG7231" - ConfigurationType="2" - InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="_DEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName="$(IntDir)/EasyG7231.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;HAS_EASYG7231" - MinimalRebuild="true" - BasicRuntimeChecks="3" - RuntimeLibrary="3" - PrecompiledHeaderFile="" - ProgramDataBaseFileName="$(TargetDir)\$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - DebugInformationFormat="4" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="true" - OutputFile="$(OutDir)/EasyG7231_pwplugin.dll" - LinkIncremental="2" - SuppressStartupBanner="true" - GenerateDebugInformation="true" - ProgramDatabaseFile="$(TargetDir)\$(TargetName).pdb" - ImportLibrary="$(IntDir)/$(TargetName).lib" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - SuppressStartupBanner="true" - OutputFile="$(IntDir)/$(TargetName).bsc" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="Release|Win32" - OutputDirectory="..\..\Release" - IntermediateDirectory="..\..\Release\EasyG7231" - ConfigurationType="2" - InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="NDEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName="$(IntDir)/EasyG7231.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;HAS_EASYG7231" - StringPooling="true" - RuntimeLibrary="2" - EnableFunctionLevelLinking="true" - PrecompiledHeaderFile="" - WarningLevel="3" - SuppressStartupBanner="true" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="true" - OutputFile="$(OutDir)/EasyG7231_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" - ImportLibrary="$(IntDir)/$(TargetName).lib" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - SuppressStartupBanner="true" - OutputFile="$(IntDir)/EasyG7231.bsc" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <Filter - Name="Source Files" - Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - > - <File - RelativePath="easycodecs.cxx" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - PreprocessorDefinitions="" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - PreprocessorDefinitions="" - /> - </FileConfiguration> - </File> - </Filter> - <Filter - Name="Header Files" - Filter="h;hpp;hxx;hm;inl" - > - <File - RelativePath="easycodecs.h" - > - </File> - <File - RelativePath="g7231codec.h" - > - </File> - </Filter> - <Filter - Name="Resource Files" - Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" - > - </Filter> - </Files> - <Globals> - </Globals> -</VisualStudioProject> +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="EasyG7231 Audio Codec" + ProjectGUID="{7CF86525-9E45-4C67-93DC-5959F1E571AE}" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + OutputDirectory="..\..\Debug" + IntermediateDirectory="..\..\Debug\EasyG7231" + ConfigurationType="2" + InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="_DEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName="$(IntDir)/EasyG7231.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;HAS_EASYG7231" + MinimalRebuild="true" + BasicRuntimeChecks="3" + RuntimeLibrary="3" + PrecompiledHeaderFile="" + ProgramDataBaseFileName="$(TargetDir)\$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + DebugInformationFormat="4" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + IgnoreImportLibrary="true" + OutputFile="$(OutDir)/EasyG7231_ptplugin.dll" + LinkIncremental="2" + SuppressStartupBanner="true" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(TargetDir)\$(TargetName).pdb" + ImportLibrary="$(IntDir)/$(TargetName).lib" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + SuppressStartupBanner="true" + OutputFile="$(IntDir)/$(TargetName).bsc" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + OutputDirectory="..\..\Release" + IntermediateDirectory="..\..\Release\EasyG7231" + ConfigurationType="2" + InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="NDEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName="$(IntDir)/EasyG7231.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + InlineFunctionExpansion="1" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;HAS_EASYG7231" + StringPooling="true" + RuntimeLibrary="2" + EnableFunctionLevelLinking="true" + PrecompiledHeaderFile="" + WarningLevel="3" + SuppressStartupBanner="true" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + IgnoreImportLibrary="true" + OutputFile="$(OutDir)/EasyG7231_ptplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" + ImportLibrary="$(IntDir)/$(TargetName).lib" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + SuppressStartupBanner="true" + OutputFile="$(IntDir)/EasyG7231.bsc" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="Source Files" + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + <File + RelativePath="easycodecs.cxx" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + </Filter> + <Filter + Name="Header Files" + Filter="h;hpp;hxx;hm;inl" + > + <File + RelativePath="easycodecs.h" + > + </File> + <File + RelativePath="g7231codec.h" + > + </File> + </Filter> + <Filter + Name="Resource Files" + Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" + > + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> Modified: opal/trunk/plugins/audio/EasyCodec/EasyG728_2005.vcproj =================================================================== --- opal/trunk/plugins/audio/EasyCodec/EasyG728_2005.vcproj 2007-11-05 05:48:56 UTC (rev 18803) +++ opal/trunk/plugins/audio/EasyCodec/EasyG728_2005.vcproj 2007-11-05 05:51:03 UTC (rev 18804) @@ -1,248 +1,248 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="8.00" - Name="EasyG728 Audio Codec" - ProjectGUID="{85E1586D-70E4-41DA-B548-B78E63B25EA2}" - > - <Platforms> - <Platform - Name="Win32" - /> - </Platforms> - <ToolFiles> - </ToolFiles> - <Configurations> - <Configuration - Name="Release|Win32" - OutputDirectory="..\..\Release" - IntermediateDirectory="..\..\Release\EasyG728" - ConfigurationType="2" - InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="NDEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\Release/EasyG728.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;HAS_EASYG728" - StringPooling="true" - RuntimeLibrary="2" - EnableFunctionLevelLinking="true" - PrecompiledHeaderFile="" - WarningLevel="3" - SuppressStartupBanner="true" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="true" - OutputFile="$(OutDir)/EasyG728_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" - ImportLibrary="$(IntDir)/$(TargetName).lib" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - SuppressStartupBanner="true" - OutputFile="$(IntDir)/EasyG728.bsc" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="Debug|Win32" - OutputDirectory="..\..\Debug" - IntermediateDirectory="..\..\Debug\EasyG728" - ConfigurationType="2" - InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="_DEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\../Debug/EasyG728.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;HAS_EASYG728" - MinimalRebuild="true" - BasicRuntimeChecks="3" - RuntimeLibrary="3" - PrecompiledHeaderFile="" - ProgramDataBaseFileName="$(TargetDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - DebugInformationFormat="4" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="true" - OutputFile="$(OutDir)/EasyG728_pwplugin.dll" - LinkIncremental="2" - SuppressStartupBanner="true" - GenerateDebugInformation="true" - ProgramDatabaseFile="$(... [truncated message content] |
From: <rjo...@us...> - 2007-11-05 05:48:51
|
Revision: 18803 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18803&view=rev Author: rjongbloed Date: 2007-11-04 21:48:56 -0800 (Sun, 04 Nov 2007) Log Message: ----------- Enable search of both pt and pw versions of directories for avcodec DLL. Modified Paths: -------------- opal/trunk/plugins/video/H.263-ffmpeg/h263ffmpeg.cxx Modified: opal/trunk/plugins/video/H.263-ffmpeg/h263ffmpeg.cxx =================================================================== --- opal/trunk/plugins/video/H.263-ffmpeg/h263ffmpeg.cxx 2007-11-05 05:47:17 UTC (rev 18802) +++ opal/trunk/plugins/video/H.263-ffmpeg/h263ffmpeg.cxx 2007-11-05 05:48:56 UTC (rev 18803) @@ -112,7 +112,7 @@ */ - +#define _CRT_NONSTDC_NO_WARNINGS #define _CRT_SECURE_NO_DEPRECATE #include <codec/opalplugin.h> @@ -143,11 +143,11 @@ #endif # ifdef _WIN32 -# define P_DEFAULT_PLUGIN_DIR "C:\\PWLIB_PLUGINS" +# define P_DEFAULT_PLUGIN_DIR "C:\\PTLIB_PLUGINS;C:\\PWLIB_PLUGINS" # define DIR_SEPERATOR "\\" # define DIR_TOKENISER ";" # else -# define P_DEFAULT_PLUGIN_DIR "/usr/lib/ptlib" +# define P_DEFAULT_PLUGIN_DIR "/usr/lib/ptlib:/usr/lib/pwlib" # define DIR_SEPERATOR "/" # define DIR_TOKENISER ":" # endif @@ -274,9 +274,10 @@ virtual bool Open(const char *name) { - char * env = ::getenv("PWLIBPLUGINDIR"); - if (env == NULL) - return InternalOpen(P_DEFAULT_PLUGIN_DIR, name); + char * env; + if ((env = ::getenv("PTLIBPLUGINDIR")) == NULL && + (env = ::getenv("PWLIBPLUGINDIR")) == NULL) + env = strdup(P_DEFAULT_PLUGIN_DIR); const char * token = strtok(env, DIR_TOKENISER); while (token != NULL) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rjo...@us...> - 2007-11-05 05:47:13
|
Revision: 18802 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18802&view=rev Author: rjongbloed Date: 2007-11-04 21:47:17 -0800 (Sun, 04 Nov 2007) Log Message: ----------- Enable search of both pt and pw versions of directories and plug in suffixes. Modified Paths: -------------- ptlib/trunk/src/ptlib/common/pluginmgr.cxx Modified: ptlib/trunk/src/ptlib/common/pluginmgr.cxx =================================================================== --- ptlib/trunk/src/ptlib/common/pluginmgr.cxx 2007-11-05 04:52:04 UTC (rev 18801) +++ ptlib/trunk/src/ptlib/common/pluginmgr.cxx 2007-11-05 05:47:17 UTC (rev 18802) @@ -166,9 +166,9 @@ #ifndef P_DEFAULT_PLUGIN_DIR # ifdef _WIN32 -# define P_DEFAULT_PLUGIN_DIR ".;C:\\PWLIB_PLUGINS" +# define P_DEFAULT_PLUGIN_DIR ".;C:\\PTLib_PlugIns;C:\\PWLIB_PLUGINS" # else -# define P_DEFAULT_PLUGIN_DIR ".:/usr/lib/pwlib" +# define P_DEFAULT_PLUGIN_DIR ".:/usr/lib/ptlib:/usr/lib/pwlib" # endif #endif @@ -186,8 +186,10 @@ #endif #endif +#define ENV_PTLIB_PLUGIN_DIR "PTLIBPLUGINDIR" #define ENV_PWLIB_PLUGIN_DIR "PWLIBPLUGINDIR" +#define PTPLUGIN_SUFFIX "_ptplugin" #define PWPLUGIN_SUFFIX "_pwplugin" const char PDevicePluginServiceDescriptor::SeparatorChar = '\t'; @@ -213,6 +215,7 @@ void PPluginManager::LoadPluginDirectory (const PDirectory & directory) { PStringList suffixes; + suffixes.AppendString(PTPLUGIN_SUFFIX); suffixes.AppendString(PWPLUGIN_SUFFIX); PFactory<PPluginSuffix>::KeyList_T keys = PFactory<PPluginSuffix>::GetKeyList(); @@ -250,8 +253,10 @@ PStringArray PPluginManager::GetPluginDirs() { - PString env = ::getenv(ENV_PWLIB_PLUGIN_DIR); - if (env == NULL) + PString env = ::getenv(ENV_PTLIB_PLUGIN_DIR); + if (env.IsEmpty()) + env = ::getenv(ENV_PWLIB_PLUGIN_DIR); + if (env.IsEmpty()) env = P_DEFAULT_PLUGIN_DIR; // split into directories on correct seperator This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rjo...@us...> - 2007-11-05 04:52:00
|
Revision: 18801 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18801&view=rev Author: rjongbloed Date: 2007-11-04 20:52:04 -0800 (Sun, 04 Nov 2007) Log Message: ----------- More PWLIBs changed to PTLIBs. Modified Paths: -------------- opal/trunk/plugins/LID/CAPI/CAPI_2005.vcproj opal/trunk/plugins/audio/gsm-amr/gsmamr_2005.vcproj opal/trunk/plugins/audio/iLBC/ilbccodec_2005.vcproj opal/trunk/plugins/video/H.261-vic/h261vic_2005.vcproj opal/trunk/plugins/video/H.263-ffmpeg/h263ffmpeg_2005.vcproj Modified: opal/trunk/plugins/LID/CAPI/CAPI_2005.vcproj =================================================================== --- opal/trunk/plugins/LID/CAPI/CAPI_2005.vcproj 2007-11-05 04:40:24 UTC (rev 18800) +++ opal/trunk/plugins/LID/CAPI/CAPI_2005.vcproj 2007-11-05 04:52:04 UTC (rev 18801) @@ -1,230 +1,230 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="8.00" - Name="Common ISDN API LID" - ProjectGUID="{73808A58-6491-4948-8441-90C8F35B7F59}" - RootNamespace="Common ISDN API LID" - > - <Platforms> - <Platform - Name="Win32" - /> - </Platforms> - <ToolFiles> - </ToolFiles> - <Configurations> - <Configuration - Name="Debug|Win32" - OutputDirectory="..\..\Debug" - IntermediateDirectory="..\..\Debug\CAPI" - ConfigurationType="2" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="_DEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName="$(IntDir)/$(TargetName).tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL" - BasicRuntimeChecks="3" - RuntimeLibrary="1" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="false" - OutputFile="$(OutDir)/capi_lid_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - GenerateDebugInformation="true" - ProgramDatabaseFile="$(IntDir)/$(TargetName).pdb" - ImportLibrary="$(IntDir)\$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - Description="Copying plug in to c:\pwlib_plugins directory." - CommandLine="copy $(TargetPath) c:\pwlib_plugins\$(TargetFileName)" - /> - </Configuration> - <Configuration - Name="Release|Win32" - OutputDirectory="..\..\Release" - IntermediateDirectory="..\..\Release\CAPI" - ConfigurationType="2" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="NDEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName="$(IntDir)/$(TargetName).tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL" - StringPooling="true" - RuntimeLibrary="0" - EnableFunctionLevelLinking="true" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - OutputFile="$(OutDir)/capi_lid_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - ImportLibrary="$(IntDir)\$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <Filter - Name="Source Files" - Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - > - <File - RelativePath="capi.cxx" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - </Filter> - </Files> - <Globals> - </Globals> -</VisualStudioProject> +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="Common ISDN API LID" + ProjectGUID="{73808A58-6491-4948-8441-90C8F35B7F59}" + RootNamespace="Common ISDN API LID" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + OutputDirectory="..\..\Debug" + IntermediateDirectory="..\..\Debug\CAPI" + ConfigurationType="2" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="_DEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName="$(IntDir)/$(TargetName).tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL" + BasicRuntimeChecks="3" + RuntimeLibrary="1" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + IgnoreImportLibrary="false" + OutputFile="$(OutDir)/capi_lid_pwplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(TargetDir)/$(TargetName).pdb" + ImportLibrary="$(IntDir)\$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + Description="Copying codec and debug information to plug in directory" + CommandLine="if not exist c:\ptlib_plugins exit
copy $(TargetPath) c:\ptlib_plugins
copy $(TargetDir)\$(TargetName).pdb c:\ptlib_plugins" + /> + </Configuration> + <Configuration + Name="Release|Win32" + OutputDirectory="..\..\Release" + IntermediateDirectory="..\..\Release\CAPI" + ConfigurationType="2" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="NDEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName="$(IntDir)/$(TargetName).tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + InlineFunctionExpansion="1" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL" + StringPooling="true" + RuntimeLibrary="0" + EnableFunctionLevelLinking="true" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + OutputFile="$(OutDir)/capi_lid_pwplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + ImportLibrary="$(IntDir)\$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="Source Files" + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + <File + RelativePath="capi.cxx" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> Modified: opal/trunk/plugins/audio/gsm-amr/gsmamr_2005.vcproj =================================================================== --- opal/trunk/plugins/audio/gsm-amr/gsmamr_2005.vcproj 2007-11-05 04:40:24 UTC (rev 18800) +++ opal/trunk/plugins/audio/gsm-amr/gsmamr_2005.vcproj 2007-11-05 04:52:04 UTC (rev 18801) @@ -1,380 +1,380 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="8.00" - Name="GSM-AMR Audio Codec" - ProjectGUID="{92E9FA1E-2925-42FD-8226-A07CBD237E18}" - RootNamespace="gsmamr" - > - <Platforms> - <Platform - Name="Win32" - /> - </Platforms> - <ToolFiles> - </ToolFiles> - <Configurations> - <Configuration - Name="Release|Win32" - OutputDirectory=".\..\..\Release" - IntermediateDirectory=".\..\..\Release\GSMAMR" - ConfigurationType="2" - InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="NDEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\..\..\Release/gsmamr.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" - StringPooling="true" - RuntimeLibrary="2" - EnableFunctionLevelLinking="true" - RuntimeTypeInfo="true" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="true" - OutputFile="$(OutDir)/gsmamr_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - ImportLibrary="$(IntDir)\$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="Debug|Win32" - OutputDirectory=".\..\..\Debug" - IntermediateDirectory=".\..\..\Debug\GSMAMR" - ConfigurationType="2" - InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="_DEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\..\..\Debug/gsmamr.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" - BasicRuntimeChecks="3" - RuntimeLibrary="3" - RuntimeTypeInfo="true" - UsePrecompiledHeader="0" - ProgramDataBaseFileName="$(TargetDir)/$(TargetName).pdb" - WarningLevel="4" - SuppressStartupBanner="true" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="false" - OutputFile="$(OutDir)/gsmamr_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - GenerateDebugInformation="true" - ProgramDatabaseFile="$(TargetDir)/$(TargetName).pdb" - ImportLibrary="$(IntDir)\$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - Description="Copying codec and debug information to plug in directory" - CommandLine="if not exist c:\pwlib_plugins exit
copy $(TargetPath) c:\pwlib_plugins
copy $(TargetDir)\$(TargetName).pdb c:\pwlib_plugins
" - /> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <Filter - Name="Source Files" - Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - > - <File - RelativePath="amrcodec.c" - > - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - </File> - </Filter> - <Filter - Name="AMR Files" - Filter=".c" - > - <Filter - Name="AMR Source" - > - <File - RelativePath="src\interf_dec.c" - > - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - WarningLevel="1" - /> - </FileConfiguration> - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - WarningLevel="1" - /> - </FileConfiguration> - </File> - <File - RelativePath="src\interf_enc.c" - > - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - WarningLevel="1" - /> - </FileConfiguration> - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - WarningLevel="1" - /> - </FileConfiguration> - </File> - <File - RelativePath="src\sp_dec.c" - > - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - WarningLevel="1" - /> - </FileConfiguration> - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - WarningLevel="1" - /> - </FileConfiguration> - </File> - <File - RelativePath="src\sp_enc.c" - > - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - WarningLevel="1" - /> - </FileConfiguration> - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - WarningLevel="1" - /> - </FileConfiguration> - </File> - </Filter> - <Filter - Name="AMR Headers" - > - <File - RelativePath="src\interf_dec.h" - > - </File> - <File - RelativePath="src\interf_enc.h" - > - </File> - <File - RelativePath="src\interf_rom.h" - > - </File> - <File - RelativePath="src\rom_dec.h" - > - </File> - <File - RelativePath="src\rom_enc.h" - > - </File> - <File - RelativePath="src\sp_dec.h" - > - </File> - <File - RelativePath="src\sp_enc.h" - > - </File> - <File - RelativePath="src\typedef.h" - > - </File> - </Filter> - </Filter> - </Files> - <Globals> - </Globals> -</VisualStudioProject> +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="GSM-AMR Audio Codec" + ProjectGUID="{92E9FA1E-2925-42FD-8226-A07CBD237E18}" + RootNamespace="gsmamr" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Release|Win32" + OutputDirectory=".\..\..\Release" + IntermediateDirectory=".\..\..\Release\GSMAMR" + ConfigurationType="2" + InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="NDEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName=".\..\..\Release/gsmamr.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + InlineFunctionExpansion="1" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" + StringPooling="true" + RuntimeLibrary="2" + EnableFunctionLevelLinking="true" + RuntimeTypeInfo="true" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + IgnoreImportLibrary="true" + OutputFile="$(OutDir)/gsmamr_pwplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + ImportLibrary="$(IntDir)\$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Debug|Win32" + OutputDirectory=".\..\..\Debug" + IntermediateDirectory=".\..\..\Debug\GSMAMR" + ConfigurationType="2" + InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="_DEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName=".\..\..\Debug/gsmamr.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" + BasicRuntimeChecks="3" + RuntimeLibrary="3" + RuntimeTypeInfo="true" + UsePrecompiledHeader="0" + ProgramDataBaseFileName="$(TargetDir)/$(TargetName).pdb" + WarningLevel="4" + SuppressStartupBanner="true" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + IgnoreImportLibrary="false" + OutputFile="$(OutDir)/gsmamr_pwplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(TargetDir)/$(TargetName).pdb" + ImportLibrary="$(IntDir)\$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + Description="Copying codec and debug information to plug in directory" + CommandLine="if not exist c:\ptlib_plugins exit
copy $(TargetPath) c:\ptlib_plugins
copy $(TargetDir)\$(TargetName).pdb c:\ptlib_plugins
" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="Source Files" + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + <File + RelativePath="amrcodec.c" + > + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + </File> + </Filter> + <Filter + Name="AMR Files" + Filter=".c" + > + <Filter + Name="AMR Source" + > + <File + RelativePath="src\interf_dec.c" + > + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + WarningLevel="1" + /> + </FileConfiguration> + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + WarningLevel="1" + /> + </FileConfiguration> + </File> + <File + RelativePath="src\interf_enc.c" + > + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + WarningLevel="1" + /> + </FileConfiguration> + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + WarningLevel="1" + /> + </FileConfiguration> + </File> + <File + RelativePath="src\sp_dec.c" + > + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + WarningLevel="1" + /> + </FileConfiguration> + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + WarningLevel="1" + /> + </FileConfiguration> + </File> + <File + RelativePath="src\sp_enc.c" + > + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + WarningLevel="1" + /> + </FileConfiguration> + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + WarningLevel="1" + /> + </FileConfiguration> + </File> + </Filter> + <Filter + Name="AMR Headers" + > + <File + RelativePath="src\interf_dec.h" + > + </File> + <File + RelativePath="src\interf_enc.h" + > + </File> + <File + RelativePath="src\interf_rom.h" + > + </File> + <File + RelativePath="src\rom_dec.h" + > + </File> + <File + RelativePath="src\rom_enc.h" + > + </File> + <File + RelativePath="src\sp_dec.h" + > + </File> + <File + RelativePath="src\sp_enc.h" + > + </File> + <File + RelativePath="src\typedef.h" + > + </File> + </Filter> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> Modified: opal/trunk/plugins/audio/iLBC/ilbccodec_2005.vcproj =================================================================== --- opal/trunk/plugins/audio/iLBC/ilbccodec_2005.vcproj 2007-11-05 04:40:24 UTC (rev 18800) +++ opal/trunk/plugins/audio/iLBC/ilbccodec_2005.vcproj 2007-11-05 04:52:04 UTC (rev 18801) @@ -1,762 +1,762 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="8.00" - Name="iLBC Audio Codec" - ProjectGUID="{F1C13640-A056-4280-B1C6-6582E5890B89}" - > - <Platforms> - <Platform - Name="Win32" - /> - </Platforms> - <ToolFiles> - </ToolFiles> - <Configurations> - <Configuration - Name="Debug|Win32" - OutputDirectory="..\..\Debug" - IntermediateDirectory="..\..\Debug\ILBC" - ConfigurationType="2" - InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="_DEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\..\Debug/ilbccodec.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" - BasicRuntimeChecks="3" - RuntimeLibrary="3" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - OutputFile="$(OutDir)/iLBC_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - GenerateDebugInformation="true" - ProgramDatabaseFile="$(OutDir)/$(TargetName).pdb" - ImportLibrary="$(IntDir)/$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - Description="Copying codec and debug information to plug in directory" - CommandLine="if not exist c:\pwlib_plugins exit
copy $(TargetPath) c:\pwlib_plugins
copy $(TargetDir)\$(TargetName).pdb c:\pwlib_plugins
" - /> - </Configuration> - <Configuration - Name="Release|Win32" - OutputDirectory="..\..\Release" - IntermediateDirectory="..\..\Release\ILBC" - ConfigurationType="2" - InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="NDEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName=".\..\Release/ilbccodec.tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" - StringPooling="true" - RuntimeLibrary="2" - EnableFunctionLevelLinking="true" - PrecompiledHeaderFile="$(IntDir)/ilbccodec.pch" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - OutputFile="$(OutDir)/iLBC_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - ImportLibrary="$(IntDir)/$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <Filter - Name="Source Files" - Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - > - <File - RelativePath="ilbccodec.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - </Filter> - <Filter - Name="iLBC" - > - <File - RelativePath="iLBC\anaFilter.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\constants.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\createCB.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\doCPLC.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\enhancer.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\filter.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\FrameClassify.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\gainquant.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\getCBvec.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\helpfun.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\hpInput.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\hpOutput.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\iCBConstruct.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\iCBSearch.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\iLBC_decode.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\iLBC_encode.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\LPCdecode.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\LPCencode.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\lsf.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\packing.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\StateConstructW.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\StateSearchW.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - <File - RelativePath="iLBC\syntFilter.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - BasicRuntimeChecks="3" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - Optimization="2" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" - /> - </FileConfiguration> - </File> - </Filter> - </Files> - <Globals> - </Globals> -</VisualStudioProject> +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="iLBC Audio Codec" + ProjectGUID="{F1C13640-A056-4280-B1C6-6582E5890B89}" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + OutputDirectory="..\..\Debug" + IntermediateDirectory="..\..\Debug\ILBC" + ConfigurationType="2" + InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="_DEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName=".\..\Debug/ilbccodec.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" + BasicRuntimeChecks="3" + RuntimeLibrary="3" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + OutputFile="$(OutDir)/iLBC_pwplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(OutDir)/$(TargetName).pdb" + ImportLibrary="$(IntDir)/$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + Description="Copying codec and debug information to plug in directory" + CommandLine="if not exist c:\ptlib_plugins exit
copy $(TargetPath) c:\ptlib_plugins
copy $(TargetDir)\$(TargetName).pdb c:\ptlib_plugins" + /> + </Configuration> + <Configuration + Name="Release|Win32" + OutputDirectory="..\..\Release" + IntermediateDirectory="..\..\Release\ILBC" + ConfigurationType="2" + InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="NDEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName=".\..\Release/ilbccodec.tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + InlineFunctionExpansion="1" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" + StringPooling="true" + RuntimeLibrary="2" + EnableFunctionLevelLinking="true" + PrecompiledHeaderFile="$(IntDir)/ilbccodec.pch" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + OutputFile="$(OutDir)/iLBC_pwplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + ImportLibrary="$(IntDir)/$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="Source Files" + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + <File + RelativePath="ilbccodec.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + </Filter> + <Filter + Name="iLBC" + > + <File + RelativePath="iLBC\anaFilter.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + <File + RelativePath="iLBC\constants.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + <File + RelativePath="iLBC\createCB.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + <File + RelativePath="iLBC\doCPLC.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + <File + RelativePath="iLBC\enhancer.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + <File + RelativePath="iLBC\filter.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + <File + RelativePath="iLBC\FrameClassify.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="2" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + /> + </FileConfiguration> + </File> + <File + RelativePath="iLBC\gainquant.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS;$(NoInherit)" + BasicRuntimeChecks="3" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" +... [truncated message content] |
From: <rjo...@us...> - 2007-11-05 04:40:24
|
Revision: 18800 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18800&view=rev Author: rjongbloed Date: 2007-11-04 20:40:24 -0800 (Sun, 04 Nov 2007) Log Message: ----------- Fixed compiler warning(s). Modified Paths: -------------- opal/trunk/plugins/video/H.261-vic/h261vic_2005.vcproj Modified: opal/trunk/plugins/video/H.261-vic/h261vic_2005.vcproj =================================================================== --- opal/trunk/plugins/video/H.261-vic/h261vic_2005.vcproj 2007-11-05 04:19:32 UTC (rev 18799) +++ opal/trunk/plugins/video/H.261-vic/h261vic_2005.vcproj 2007-11-05 04:40:24 UTC (rev 18800) @@ -1,311 +1,375 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="8.00" - Name="Vic H.261 Video Codec" - ProjectGUID="{4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}" - > - <Platforms> - <Platform - Name="Win32" - /> - </Platforms> - <ToolFiles> - </ToolFiles> - <Configurations> - <Configuration - Name="Release|Win32" - OutputDirectory="..\..\Release" - IntermediateDirectory="..\..\Release\h261vic" - ConfigurationType="2" - InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="NDEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName="$(IntDir)/$(TargetName).tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" - StringPooling="true" - RuntimeLibrary="2" - EnableFunctionLevelLinking="true" - RuntimeTypeInfo="true" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="3" - SuppressStartupBanner="true" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="true" - OutputFile="$(OutDir)/h261vic_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - ImportLibrary="$(IntDir)/$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="Debug|Win32" - OutputDirectory="..\..\Debug" - IntermediateDirectory="..\..\Debug\h261vic" - ConfigurationType="2" - InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" - UseOfMFC="0" - ATLMinimizesCRunTimeLibraryUsage="false" - CharacterSet="2" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="_DEBUG" - MkTypLibCompatible="true" - SuppressStartupBanner="true" - TargetEnvironment="1" - TypeLibraryName="$(IntDir)/$(TargetName).tlb" - HeaderFileName="" - /> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" - BasicRuntimeChecks="3" - RuntimeLibrary="3" - RuntimeTypeInfo="true" - ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" - WarningLevel="4" - SuppressStartupBanner="true" - DebugInformationFormat="3" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - Culture="3081" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - IgnoreImportLibrary="true" - AdditionalDependencies="wsock32.lib" - OutputFile="$(OutDir)/h261vic_pwplugin.dll" - LinkIncremental="1" - SuppressStartupBanner="true" - GenerateDebugInformation="true" - ProgramDatabaseFile="$(TargetDir)\$(TargetName).pdb" - ImportLibrary="$(IntDir)/$(TargetName).lib" - TargetMachine="1" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - Description="Copying codec and debug information to plug in directory" - CommandLine="if not exist c:\pwlib_plugins exit
copy $(TargetPath) c:\pwlib_plugins
copy $(TargetDir)\$(TargetName).pdb c:\pwlib_plugins
" - /> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <Filter - Name="Source Files" - Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - > - <File - RelativePath=".\h261vic.cxx" - > - </File> - <File - RelativePath="..\common\trace.cxx" - > - </File> - <File - RelativePath="..\common\trace.h" - > - </File> - </Filter> - <Filter - Name="VIC Files" - Filter=".c" - > - <Filter - Name="C Files" - > - <File - RelativePath=".\vic\bv.c" - > - </File> - <File - RelativePath=".\vic\huffcode.c" - > - </File> - </Filter> - <Filter - Name="CXX Files" - > - <File - RelativePath=".\vic\dct.cxx" - > - </File> - <File - RelativePath=".\vic\encoder-h261.cxx" - > - </File> - <File - RelativePath=".\vic\p64.cxx" - > - </File> - <File - RelativePath=".\vic\p64encoder.cxx" - > - </File> - <File - RelativePath=".\vic\transmitter.cxx" - > - </File> - <File - RelativePath=".\vic\vid_coder.cxx" - > - </File> - </Filter> - <Filter - Name="H Files" - > - <File - RelativePath=".\vic\bsd-endian.h" - > - </File> - <File - RelativePath=".\vic\config.h" - > - </File> - <File - RelativePath=".\vic\dct.h" - > - </File> - <File - RelativePath=".\vic\encoder-h261.h" - > - </File> - <File - RelativePath=".\vic\grabber.h" - > - </File> - <File - RelativePath=".\vic\p64-huff.h" - > - </File> - <File - RelativePath=".\vic\p64.h" - > - </File> - <File - RelativePath=".\vic\p64encoder.h" - > - </File> - <File - RelativePath=".\vic\transmitter.h" - > - </File> - <File - RelativePath=".\vic\vid_coder.h" - > - </File> - </Filter> - </Filter> - </Files> - <Globals> - </Globals> -</VisualStudioProject> +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="Vic H.261 Video Codec" + ProjectGUID="{4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Release|Win32" + OutputDirectory="..\..\Release" + IntermediateDirectory="..\..\Release\h261vic" + ConfigurationType="2" + InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="NDEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName="$(IntDir)/$(TargetName).tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + InlineFunctionExpansion="1" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" + StringPooling="true" + RuntimeLibrary="2" + EnableFunctionLevelLinking="true" + RuntimeTypeInfo="true" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="3" + SuppressStartupBanner="true" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + IgnoreImportLibrary="true" + OutputFile="$(OutDir)/h261vic_pwplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + ImportLibrary="$(IntDir)/$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Debug|Win32" + OutputDirectory="..\..\Debug" + IntermediateDirectory="..\..\Debug\h261vic" + ConfigurationType="2" + InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + PreprocessorDefinitions="_DEBUG" + MkTypLibCompatible="true" + SuppressStartupBanner="true" + TargetEnvironment="1" + TypeLibraryName="$(IntDir)/$(TargetName).tlb" + HeaderFileName="" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PLUGIN_CODEC_DLL_EXPORTS" + BasicRuntimeChecks="3" + RuntimeLibrary="3" + RuntimeTypeInfo="true" + ProgramDataBaseFileName="$(IntDir)/$(TargetName).pdb" + WarningLevel="4" + SuppressStartupBanner="true" + DebugInformationFormat="3" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + Culture="3081" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLinkerTool" + IgnoreImportLibrary="true" + AdditionalDependencies="wsock32.lib" + OutputFile="$(OutDir)/h261vic_pwplugin.dll" + LinkIncremental="1" + SuppressStartupBanner="true" + GenerateDebugInformation="true" + ProgramDatabaseFile="$(TargetDir)\$(TargetName).pdb" + ImportLibrary="$(IntDir)/$(TargetName).lib" + TargetMachine="1" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCManifestTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCAppVerifierTool" + /> + <Tool + Name="VCWebDeploymentTool" + /> + <Tool + Name="VCPostBuildEventTool" + Description="Copying codec and debug information to plug in directory" + CommandLine="if not exist c:\pwlib_plugins exit
copy $(TargetPath) c:\pwlib_plugins
copy $(TargetDir)\$(TargetName).pdb c:\pwlib_plugins
" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="Source Files" + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + <File + RelativePath=".\h261vic.cxx" + > + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="_CRT_SECURE_NO_WARNINGS=1" + /> + </FileConfiguration> + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="_CRT_SECURE_NO_WARNINGS=1" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\common\trace.cxx" + > + </File> + <File + RelativePath="..\common\trace.h" + > + </File> + </Filter> + <Filter + Name="VIC Files" + Filter=".c" + > + <Filter + Name="C Files" + > + <File + RelativePath=".\vic\bv.c" + > + </File> + <File + RelativePath=".\vic\huffcode.c" + > + </File> + </Filter> + <Filter + Name="CXX Files" + > + <File + RelativePath=".\vic\dct.cxx" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + WarningLevel="3" + /> + </FileConfiguration> + </File> + <File + RelativePath=".\vic\encoder-h261.cxx" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + WarningLevel="3" + /> + </FileConfiguration> + </File> + <File + RelativePath=".\vic\p64.cxx" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + WarningLevel="3" + /> + </FileConfiguration> + </File> + <File + RelativePath=".\vic\p64encoder.cxx" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + WarningLevel="3" + /> + </FileConfiguration> + </File> + <File + RelativePath=".\vic\transmitter.cxx" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + WarningLevel="3" + /> + </FileConfiguration> + </File> + <File + RelativePath=".\vic\vid_coder.cxx" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + WarningLevel="3" + /> + </FileConfiguration> + </File> + </Filter> + <Filter + Name="H Files" + > + <File + RelativePath=".\vic\bsd-endian.h" + > + </File> + <File + RelativePath=".\vic\config.h" + > + </File> + <File + RelativePath=".\vic\dct.h" + > + </File> + <File + RelativePath=".\vic\encoder-h261.h" + > + </File> + <File + RelativePath=".\vic\grabber.h" + > + </File> + <File + RelativePath=".\vic\p64-huff.h" + > + </File> + <File + RelativePath=".\vic\p64.h" + > + </File> + <File + RelativePath=".\vic\p64encoder.h" + > + </File> + <File + RelativePath=".\vic\transmitter.h" + > + </File> + <File + RelativePath=".\vic\vid_coder.h" + > + </File> + </Filter> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rjo...@us...> - 2007-11-05 04:19:27
|
Revision: 18799 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18799&view=rev Author: rjongbloed Date: 2007-11-04 20:19:32 -0800 (Sun, 04 Nov 2007) Log Message: ----------- More PWLIBs changed to PTLIBs. Modified Paths: -------------- opal/trunk/plugins/plugins_2005.sln Modified: opal/trunk/plugins/plugins_2005.sln =================================================================== --- opal/trunk/plugins/plugins_2005.sln 2007-11-05 02:40:14 UTC (rev 18798) +++ opal/trunk/plugins/plugins_2005.sln 2007-11-05 04:19:32 UTC (rev 18799) @@ -1,304 +1,304 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GSM 06.10 Audio Codec", "audio\GSM0610\gsm0610_2005.vcproj", "{E6897206-9765-4B73-9A98-DAC5787814CE}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "iLBC Audio Codec", "audio\iLBC\ilbccodec_2005.vcproj", "{F1C13640-A056-4280-B1C6-6582E5890B89}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Speex Audio Codec", "audio\Speex\Speex_2005.vcproj", "{02AFB070-A9D5-4FB7-A041-311722C9F8D4}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Vic H.261 Video Codec", "video\H.261-vic\h261vic_2005.vcproj", "{4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ffmpeg H.263 Video Codec", "video\H.263-ffmpeg\h263ffmpeg_2005.vcproj", "{3716C952-D6E0-40C2-B132-4F6D1636D31B}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LPC-10 Audio Codec", "audio\LPC_10\LPC_10_2005.vcproj", "{9481B85A-4166-4607-ADC4-0C19D2753EB7}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "G.726 Audio Codec", "audio\G726\G726_2005.vcproj", "{269DA9EF-526D-46DE-AA69-D39EFBCB29C0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GSM-AMR Audio Codec", "audio\gsm-amr\gsmamr_2005.vcproj", "{92E9FA1E-2925-42FD-8226-A07CBD237E18}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "IMA ADPCM Audio Codec", "audio\IMA_ADPCM\IMA_ADPCM_2005.vcproj", "{25F0AA82-0186-45AD-92C3-EE1F9282A038}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Voice Age G.729 Audio Codec", "audio\VoiceAgeG729\VoiceAgeG729_2005.vcproj", "{3F038BF6-B7B9-4941-AF57-8D539FC05781}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EasyG729A Audio Codec", "audio\EasyCodec\EasyG729A_2005.vcproj", "{B0FD150D-E781-4605-B70D-32019FEFD6F1}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EasyG7231 Audio Codec", "audio\EasyCodec\EasyG7231_2005.vcproj", "{7CF86525-9E45-4C67-93DC-5959F1E571AE}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "IxJ LID", "LID\IxJ\IxJ_2005.vcproj", "{2F7CD8F0-30C8-4B70-A807-E13472EE23CA}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "USB HID LID", "LID\USB\USB_2005.vcproj", "{3FCBA070-C605-4EE5-B078-E2461F792B36}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VPB LID", "LID\VPB\VPB_2005.vcproj", "{EE028C0B-AF72-499F-A778-82C3645A90DB}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TigerJet LID", "LID\TigerJet\TJ_2005.vcproj", "{9A4E2793-1D97-4B0C-BCFD-130136990E35}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EasyG728 Audio Codec", "audio\EasyCodec\EasyG728_2005.vcproj", "{85E1586D-70E4-41DA-B548-B78E63B25EA2}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Common ISDN API LID", "LID\CAPI\CAPI_2005.vcproj", "{73808A58-6491-4948-8441-90C8F35B7F59}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PTLib Static", "..\..\pwlib\src\ptlib\msos\Console_2005.vcproj", "{D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PTLib DLL", "..\..\pwlib\src\ptlib\msos\PTLib_2005.vcproj", "{85F4F26A-1A5D-4685-A48A-448102C5C5BC}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OPAL Static", "..\src\win32\opal_lib_2005.vcproj", "{ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OPAL_dll", "..\src\win32\opal_dll_2005.vcproj", "{C7546C76-E010-4105-AEAE-48FCD6C09527}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opalcodecinfo", "..\samples\opalcodecinfo\opalcodecinfo_2005.vcproj", "{7FF55F1C-87EB-4087-8814-FD494BE49170}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CodecTest", "..\samples\codectest\codectest_2005.vcproj", "{7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - No Trace|Win32 = No Trace|Win32 - No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - Release|Win32 = Release|Win32 - Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E6897206-9765-4B73-9A98-DAC5787814CE}.Debug|Win32.ActiveCfg = Debug|Win32 - {E6897206-9765-4B73-9A98-DAC5787814CE}.Debug|Win32.Build.0 = Debug|Win32 - {E6897206-9765-4B73-9A98-DAC5787814CE}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {E6897206-9765-4B73-9A98-DAC5787814CE}.No Trace|Win32.ActiveCfg = Debug|Win32 - {E6897206-9765-4B73-9A98-DAC5787814CE}.No Trace|Win32.Build.0 = Debug|Win32 - {E6897206-9765-4B73-9A98-DAC5787814CE}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {E6897206-9765-4B73-9A98-DAC5787814CE}.Release|Win32.ActiveCfg = Release|Win32 - {E6897206-9765-4B73-9A98-DAC5787814CE}.Release|Win32.Build.0 = Release|Win32 - {E6897206-9765-4B73-9A98-DAC5787814CE}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {F1C13640-A056-4280-B1C6-6582E5890B89}.Debug|Win32.ActiveCfg = Debug|Win32 - {F1C13640-A056-4280-B1C6-6582E5890B89}.Debug|Win32.Build.0 = Debug|Win32 - {F1C13640-A056-4280-B1C6-6582E5890B89}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {F1C13640-A056-4280-B1C6-6582E5890B89}.No Trace|Win32.ActiveCfg = Release|Win32 - {F1C13640-A056-4280-B1C6-6582E5890B89}.No Trace|Win32.Build.0 = Release|Win32 - {F1C13640-A056-4280-B1C6-6582E5890B89}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {F1C13640-A056-4280-B1C6-6582E5890B89}.Release|Win32.ActiveCfg = Release|Win32 - {F1C13640-A056-4280-B1C6-6582E5890B89}.Release|Win32.Build.0 = Release|Win32 - {F1C13640-A056-4280-B1C6-6582E5890B89}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Debug|Win32.ActiveCfg = Debug|Win32 - {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Debug|Win32.Build.0 = Debug|Win32 - {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.No Trace|Win32.ActiveCfg = Debug|Win32 - {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.No Trace|Win32.Build.0 = Debug|Win32 - {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Release|Win32.ActiveCfg = Release|Win32 - {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Release|Win32.Build.0 = Release|Win32 - {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Debug|Win32.ActiveCfg = Debug|Win32 - {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Debug|Win32.Build.0 = Debug|Win32 - {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.No Trace|Win32.ActiveCfg = Debug|Win32 - {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.No Trace|Win32.Build.0 = Debug|Win32 - {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Release|Win32.ActiveCfg = Release|Win32 - {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Release|Win32.Build.0 = Release|Win32 - {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Debug|Win32.ActiveCfg = Debug|Win32 - {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Debug|Win32.Build.0 = Debug|Win32 - {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {3716C952-D6E0-40C2-B132-4F6D1636D31B}.No Trace|Win32.ActiveCfg = Debug|Win32 - {3716C952-D6E0-40C2-B132-4F6D1636D31B}.No Trace|Win32.Build.0 = Debug|Win32 - {3716C952-D6E0-40C2-B132-4F6D1636D31B}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Release|Win32.ActiveCfg = Release|Win32 - {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Release|Win32.Build.0 = Release|Win32 - {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Debug|Win32.ActiveCfg = Debug|Win32 - {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Debug|Win32.Build.0 = Debug|Win32 - {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {9481B85A-4166-4607-ADC4-0C19D2753EB7}.No Trace|Win32.ActiveCfg = Release|Win32 - {9481B85A-4166-4607-ADC4-0C19D2753EB7}.No Trace|Win32.Build.0 = Release|Win32 - {9481B85A-4166-4607-ADC4-0C19D2753EB7}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Release|Win32.ActiveCfg = Release|Win32 - {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Release|Win32.Build.0 = Release|Win32 - {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Debug|Win32.ActiveCfg = Debug|Win32 - {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Debug|Win32.Build.0 = Debug|Win32 - {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.No Trace|Win32.ActiveCfg = Debug|Win32 - {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.No Trace|Win32.Build.0 = Debug|Win32 - {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Release|Win32.ActiveCfg = Release|Win32 - {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Release|Win32.Build.0 = Release|Win32 - {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Debug|Win32.ActiveCfg = Debug|Win32 - {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Debug|Win32.Build.0 = Debug|Win32 - {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {92E9FA1E-2925-42FD-8226-A07CBD237E18}.No Trace|Win32.ActiveCfg = Debug|Win32 - {92E9FA1E-2925-42FD-8226-A07CBD237E18}.No Trace|Win32.Build.0 = Debug|Win32 - {92E9FA1E-2925-42FD-8226-A07CBD237E18}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Release|Win32.ActiveCfg = Release|Win32 - {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Release|Win32.Build.0 = Release|Win32 - {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Debug|Win32.ActiveCfg = Debug|Win32 - {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Debug|Win32.Build.0 = Debug|Win32 - {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {25F0AA82-0186-45AD-92C3-EE1F9282A038}.No Trace|Win32.ActiveCfg = Release|Win32 - {25F0AA82-0186-45AD-92C3-EE1F9282A038}.No Trace|Win32.Build.0 = Release|Win32 - {25F0AA82-0186-45AD-92C3-EE1F9282A038}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Release|Win32.ActiveCfg = Release|Win32 - {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Release|Win32.Build.0 = Release|Win32 - {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Debug|Win32.ActiveCfg = Debug|Win32 - {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Debug|Win32.Build.0 = Debug|Win32 - {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {3F038BF6-B7B9-4941-AF57-8D539FC05781}.No Trace|Win32.ActiveCfg = Release|Win32 - {3F038BF6-B7B9-4941-AF57-8D539FC05781}.No Trace|Win32.Build.0 = Release|Win32 - {3F038BF6-B7B9-4941-AF57-8D539FC05781}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Release|Win32.ActiveCfg = Release|Win32 - {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Release|Win32.Build.0 = Release|Win32 - {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Debug|Win32.ActiveCfg = Debug|Win32 - {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Debug|Win32.Build.0 = Debug|Win32 - {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {B0FD150D-E781-4605-B70D-32019FEFD6F1}.No Trace|Win32.ActiveCfg = Debug|Win32 - {B0FD150D-E781-4605-B70D-32019FEFD6F1}.No Trace|Win32.Build.0 = Debug|Win32 - {B0FD150D-E781-4605-B70D-32019FEFD6F1}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Release|Win32.ActiveCfg = Release|Win32 - {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Release|Win32.Build.0 = Release|Win32 - {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Debug|Win32.ActiveCfg = Debug|Win32 - {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Debug|Win32.Build.0 = Debug|Win32 - {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {7CF86525-9E45-4C67-93DC-5959F1E571AE}.No Trace|Win32.ActiveCfg = Release|Win32 - {7CF86525-9E45-4C67-93DC-5959F1E571AE}.No Trace|Win32.Build.0 = Release|Win32 - {7CF86525-9E45-4C67-93DC-5959F1E571AE}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Release|Win32.ActiveCfg = Release|Win32 - {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Release|Win32.Build.0 = Release|Win32 - {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Debug|Win32.ActiveCfg = Debug|Win32 - {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Debug|Win32.Build.0 = Debug|Win32 - {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.No Trace|Win32.ActiveCfg = Release|Win32 - {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.No Trace|Win32.Build.0 = Release|Win32 - {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Release|Win32.ActiveCfg = Release|Win32 - {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Release|Win32.Build.0 = Release|Win32 - {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {3FCBA070-C605-4EE5-B078-E2461F792B36}.Debug|Win32.ActiveCfg = Debug|Win32 - {3FCBA070-C605-4EE5-B078-E2461F792B36}.Debug|Win32.Build.0 = Debug|Win32 - {3FCBA070-C605-4EE5-B078-E2461F792B36}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {3FCBA070-C605-4EE5-B078-E2461F792B36}.No Trace|Win32.ActiveCfg = Release|Win32 - {3FCBA070-C605-4EE5-B078-E2461F792B36}.No Trace|Win32.Build.0 = Release|Win32 - {3FCBA070-C605-4EE5-B078-E2461F792B36}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {3FCBA070-C605-4EE5-B078-E2461F792B36}.Release|Win32.ActiveCfg = Release|Win32 - {3FCBA070-C605-4EE5-B078-E2461F792B36}.Release|Win32.Build.0 = Release|Win32 - {3FCBA070-C605-4EE5-B078-E2461F792B36}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {EE028C0B-AF72-499F-A778-82C3645A90DB}.Debug|Win32.ActiveCfg = Debug|Win32 - {EE028C0B-AF72-499F-A778-82C3645A90DB}.Debug|Win32.Build.0 = Debug|Win32 - {EE028C0B-AF72-499F-A778-82C3645A90DB}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {EE028C0B-AF72-499F-A778-82C3645A90DB}.No Trace|Win32.ActiveCfg = Release|Win32 - {EE028C0B-AF72-499F-A778-82C3645A90DB}.No Trace|Win32.Build.0 = Release|Win32 - {EE028C0B-AF72-499F-A778-82C3645A90DB}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {EE028C0B-AF72-499F-A778-82C3645A90DB}.Release|Win32.ActiveCfg = Release|Win32 - {EE028C0B-AF72-499F-A778-82C3645A90DB}.Release|Win32.Build.0 = Release|Win32 - {EE028C0B-AF72-499F-A778-82C3645A90DB}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Debug|Win32.ActiveCfg = Debug|Win32 - {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Debug|Win32.Build.0 = Debug|Win32 - {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {9A4E2793-1D97-4B0C-BCFD-130136990E35}.No Trace|Win32.ActiveCfg = Release|Win32 - {9A4E2793-1D97-4B0C-BCFD-130136990E35}.No Trace|Win32.Build.0 = Release|Win32 - {9A4E2793-1D97-4B0C-BCFD-130136990E35}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Release|Win32.ActiveCfg = Release|Win32 - {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Release|Win32.Build.0 = Release|Win32 - {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Debug|Win32.ActiveCfg = Debug|Win32 - {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Debug|Win32.Build.0 = Debug|Win32 - {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {85E1586D-70E4-41DA-B548-B78E63B25EA2}.No Trace|Win32.ActiveCfg = Debug|Win32 - {85E1586D-70E4-41DA-B548-B78E63B25EA2}.No Trace|Win32.Build.0 = Debug|Win32 - {85E1586D-70E4-41DA-B548-B78E63B25EA2}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Release|Win32.ActiveCfg = Release|Win32 - {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Release|Win32.Build.0 = Release|Win32 - {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {73808A58-6491-4948-8441-90C8F35B7F59}.Debug|Win32.ActiveCfg = Debug|Win32 - {73808A58-6491-4948-8441-90C8F35B7F59}.Debug|Win32.Build.0 = Debug|Win32 - {73808A58-6491-4948-8441-90C8F35B7F59}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {73808A58-6491-4948-8441-90C8F35B7F59}.No Trace|Win32.ActiveCfg = Release|Win32 - {73808A58-6491-4948-8441-90C8F35B7F59}.No Trace|Win32.Build.0 = Release|Win32 - {73808A58-6491-4948-8441-90C8F35B7F59}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {73808A58-6491-4948-8441-90C8F35B7F59}.Release|Win32.ActiveCfg = Release|Win32 - {73808A58-6491-4948-8441-90C8F35B7F59}.Release|Win32.Build.0 = Release|Win32 - {73808A58-6491-4948-8441-90C8F35B7F59}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Debug|Win32.ActiveCfg = Debug|Win32 - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Debug|Win32.Build.0 = Debug|Win32 - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.No Trace|Win32.ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Release|Win32.ActiveCfg = Release|Win32 - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Release|Win32.Build.0 = Release|Win32 - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Debug|Win32.ActiveCfg = Debug|Win32 - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Debug|Win32.Build.0 = Debug|Win32 - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.No Trace|Win32.ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Release|Win32.ActiveCfg = Release|Win32 - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Release|Win32.Build.0 = Release|Win32 - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Debug|Win32.ActiveCfg = Debug|Win32 - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Debug|Win32.Build.0 = Debug|Win32 - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.No Trace|Win32.ActiveCfg = No Trace|Win32 - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.No Trace|Win32.Build.0 = No Trace|Win32 - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Release|Win32.ActiveCfg = Release|Win32 - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Release|Win32.Build.0 = Release|Win32 - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {C7546C76-E010-4105-AEAE-48FCD6C09527}.Debug|Win32.ActiveCfg = Debug|Win32 - {C7546C76-E010-4105-AEAE-48FCD6C09527}.Debug|Win32.Build.0 = Debug|Win32 - {C7546C76-E010-4105-AEAE-48FCD6C09527}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {C7546C76-E010-4105-AEAE-48FCD6C09527}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {C7546C76-E010-4105-AEAE-48FCD6C09527}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {C7546C76-E010-4105-AEAE-48FCD6C09527}.No Trace|Win32.ActiveCfg = No Trace|Win32 - {C7546C76-E010-4105-AEAE-48FCD6C09527}.No Trace|Win32.Build.0 = No Trace|Win32 - {C7546C76-E010-4105-AEAE-48FCD6C09527}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {C7546C76-E010-4105-AEAE-48FCD6C09527}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {C7546C76-E010-4105-AEAE-48FCD6C09527}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {C7546C76-E010-4105-AEAE-48FCD6C09527}.Release|Win32.ActiveCfg = Release|Win32 - {C7546C76-E010-4105-AEAE-48FCD6C09527}.Release|Win32.Build.0 = Release|Win32 - {C7546C76-E010-4105-AEAE-48FCD6C09527}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {C7546C76-E010-4105-AEAE-48FCD6C09527}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {C7546C76-E010-4105-AEAE-48FCD6C09527}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) - {7FF55F1C-87EB-4087-8814-FD494BE49170}.Debug|Win32.ActiveCfg = Debug|Win32 - {7FF55F1C-87EB-4087-8814-FD494BE49170}.Debug|Win32.Build.0 = Debug|Win32 - {7FF55F1C-87EB-4087-8814-FD494BE49170}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {7FF55F1C-87EB-4087-8814-FD494BE49170}.No Trace|Win32.ActiveCfg = No Trace|Win32 - {7FF55F1C-87EB-4087-8814-FD494BE49170}.No Trace|Win32.Build.0 = No Trace|Win32 - {7FF55F1C-87EB-4087-8814-FD494BE49170}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = No Trace|Win32 - {7FF55F1C-87EB-4087-8814-FD494BE49170}.Release|Win32.ActiveCfg = Release|Win32 - {7FF55F1C-87EB-4087-8814-FD494BE49170}.Release|Win32.Build.0 = Release|Win32 - {7FF55F1C-87EB-4087-8814-FD494BE49170}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Debug|Win32.ActiveCfg = Debug|Win32 - {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Debug|Win32.Build.0 = Debug|Win32 - {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.No Trace|Win32.ActiveCfg = Debug|Win32 - {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.No Trace|Win32.Build.0 = Debug|Win32 - {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 - {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Release|Win32.ActiveCfg = Release|Win32 - {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Release|Win32.Build.0 = Release|Win32 - {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GSM 06.10 Audio Codec", "audio\GSM0610\gsm0610_2005.vcproj", "{E6897206-9765-4B73-9A98-DAC5787814CE}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "iLBC Audio Codec", "audio\iLBC\ilbccodec_2005.vcproj", "{F1C13640-A056-4280-B1C6-6582E5890B89}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Speex Audio Codec", "audio\Speex\Speex_2005.vcproj", "{02AFB070-A9D5-4FB7-A041-311722C9F8D4}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Vic H.261 Video Codec", "video\H.261-vic\h261vic_2005.vcproj", "{4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ffmpeg H.263 Video Codec", "video\H.263-ffmpeg\h263ffmpeg_2005.vcproj", "{3716C952-D6E0-40C2-B132-4F6D1636D31B}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LPC-10 Audio Codec", "audio\LPC_10\LPC_10_2005.vcproj", "{9481B85A-4166-4607-ADC4-0C19D2753EB7}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "G.726 Audio Codec", "audio\G726\G726_2005.vcproj", "{269DA9EF-526D-46DE-AA69-D39EFBCB29C0}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GSM-AMR Audio Codec", "audio\gsm-amr\gsmamr_2005.vcproj", "{92E9FA1E-2925-42FD-8226-A07CBD237E18}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "IMA ADPCM Audio Codec", "audio\IMA_ADPCM\IMA_ADPCM_2005.vcproj", "{25F0AA82-0186-45AD-92C3-EE1F9282A038}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Voice Age G.729 Audio Codec", "audio\VoiceAgeG729\VoiceAgeG729_2005.vcproj", "{3F038BF6-B7B9-4941-AF57-8D539FC05781}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EasyG729A Audio Codec", "audio\EasyCodec\EasyG729A_2005.vcproj", "{B0FD150D-E781-4605-B70D-32019FEFD6F1}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EasyG7231 Audio Codec", "audio\EasyCodec\EasyG7231_2005.vcproj", "{7CF86525-9E45-4C67-93DC-5959F1E571AE}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "IxJ LID", "LID\IxJ\IxJ_2005.vcproj", "{2F7CD8F0-30C8-4B70-A807-E13472EE23CA}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "USB HID LID", "LID\USB\USB_2005.vcproj", "{3FCBA070-C605-4EE5-B078-E2461F792B36}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VPB LID", "LID\VPB\VPB_2005.vcproj", "{EE028C0B-AF72-499F-A778-82C3645A90DB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TigerJet LID", "LID\TigerJet\TJ_2005.vcproj", "{9A4E2793-1D97-4B0C-BCFD-130136990E35}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EasyG728 Audio Codec", "audio\EasyCodec\EasyG728_2005.vcproj", "{85E1586D-70E4-41DA-B548-B78E63B25EA2}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Common ISDN API LID", "LID\CAPI\CAPI_2005.vcproj", "{73808A58-6491-4948-8441-90C8F35B7F59}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PTLib Static", "..\..\ptlib\src\ptlib\msos\Console_2005.vcproj", "{D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PTLib DLL", "..\..\ptlib\src\ptlib\msos\PTLib_2005.vcproj", "{85F4F26A-1A5D-4685-A48A-448102C5C5BC}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OPAL Static", "..\src\win32\opal_lib_2005.vcproj", "{ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OPAL_dll", "..\src\win32\opal_dll_2005.vcproj", "{C7546C76-E010-4105-AEAE-48FCD6C09527}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opalcodecinfo", "..\samples\opalcodecinfo\opalcodecinfo_2005.vcproj", "{7FF55F1C-87EB-4087-8814-FD494BE49170}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CodecTest", "..\samples\codectest\codectest_2005.vcproj", "{7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + No Trace|Win32 = No Trace|Win32 + No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + Release|Win32 = Release|Win32 + Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E6897206-9765-4B73-9A98-DAC5787814CE}.Debug|Win32.ActiveCfg = Debug|Win32 + {E6897206-9765-4B73-9A98-DAC5787814CE}.Debug|Win32.Build.0 = Debug|Win32 + {E6897206-9765-4B73-9A98-DAC5787814CE}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {E6897206-9765-4B73-9A98-DAC5787814CE}.No Trace|Win32.ActiveCfg = Debug|Win32 + {E6897206-9765-4B73-9A98-DAC5787814CE}.No Trace|Win32.Build.0 = Debug|Win32 + {E6897206-9765-4B73-9A98-DAC5787814CE}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {E6897206-9765-4B73-9A98-DAC5787814CE}.Release|Win32.ActiveCfg = Release|Win32 + {E6897206-9765-4B73-9A98-DAC5787814CE}.Release|Win32.Build.0 = Release|Win32 + {E6897206-9765-4B73-9A98-DAC5787814CE}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {F1C13640-A056-4280-B1C6-6582E5890B89}.Debug|Win32.ActiveCfg = Debug|Win32 + {F1C13640-A056-4280-B1C6-6582E5890B89}.Debug|Win32.Build.0 = Debug|Win32 + {F1C13640-A056-4280-B1C6-6582E5890B89}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {F1C13640-A056-4280-B1C6-6582E5890B89}.No Trace|Win32.ActiveCfg = Release|Win32 + {F1C13640-A056-4280-B1C6-6582E5890B89}.No Trace|Win32.Build.0 = Release|Win32 + {F1C13640-A056-4280-B1C6-6582E5890B89}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {F1C13640-A056-4280-B1C6-6582E5890B89}.Release|Win32.ActiveCfg = Release|Win32 + {F1C13640-A056-4280-B1C6-6582E5890B89}.Release|Win32.Build.0 = Release|Win32 + {F1C13640-A056-4280-B1C6-6582E5890B89}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Debug|Win32.ActiveCfg = Debug|Win32 + {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Debug|Win32.Build.0 = Debug|Win32 + {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.No Trace|Win32.ActiveCfg = Debug|Win32 + {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.No Trace|Win32.Build.0 = Debug|Win32 + {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Release|Win32.ActiveCfg = Release|Win32 + {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Release|Win32.Build.0 = Release|Win32 + {02AFB070-A9D5-4FB7-A041-311722C9F8D4}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Debug|Win32.ActiveCfg = Debug|Win32 + {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Debug|Win32.Build.0 = Debug|Win32 + {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.No Trace|Win32.ActiveCfg = Debug|Win32 + {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.No Trace|Win32.Build.0 = Debug|Win32 + {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Release|Win32.ActiveCfg = Release|Win32 + {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Release|Win32.Build.0 = Release|Win32 + {4A1B92CB-CA8E-4511-A1D5-B0A322FDE67C}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Debug|Win32.ActiveCfg = Debug|Win32 + {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Debug|Win32.Build.0 = Debug|Win32 + {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {3716C952-D6E0-40C2-B132-4F6D1636D31B}.No Trace|Win32.ActiveCfg = Debug|Win32 + {3716C952-D6E0-40C2-B132-4F6D1636D31B}.No Trace|Win32.Build.0 = Debug|Win32 + {3716C952-D6E0-40C2-B132-4F6D1636D31B}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Release|Win32.ActiveCfg = Release|Win32 + {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Release|Win32.Build.0 = Release|Win32 + {3716C952-D6E0-40C2-B132-4F6D1636D31B}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Debug|Win32.ActiveCfg = Debug|Win32 + {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Debug|Win32.Build.0 = Debug|Win32 + {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {9481B85A-4166-4607-ADC4-0C19D2753EB7}.No Trace|Win32.ActiveCfg = Release|Win32 + {9481B85A-4166-4607-ADC4-0C19D2753EB7}.No Trace|Win32.Build.0 = Release|Win32 + {9481B85A-4166-4607-ADC4-0C19D2753EB7}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Release|Win32.ActiveCfg = Release|Win32 + {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Release|Win32.Build.0 = Release|Win32 + {9481B85A-4166-4607-ADC4-0C19D2753EB7}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Debug|Win32.ActiveCfg = Debug|Win32 + {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Debug|Win32.Build.0 = Debug|Win32 + {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.No Trace|Win32.ActiveCfg = Debug|Win32 + {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.No Trace|Win32.Build.0 = Debug|Win32 + {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Release|Win32.ActiveCfg = Release|Win32 + {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Release|Win32.Build.0 = Release|Win32 + {269DA9EF-526D-46DE-AA69-D39EFBCB29C0}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Debug|Win32.ActiveCfg = Debug|Win32 + {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Debug|Win32.Build.0 = Debug|Win32 + {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {92E9FA1E-2925-42FD-8226-A07CBD237E18}.No Trace|Win32.ActiveCfg = Debug|Win32 + {92E9FA1E-2925-42FD-8226-A07CBD237E18}.No Trace|Win32.Build.0 = Debug|Win32 + {92E9FA1E-2925-42FD-8226-A07CBD237E18}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Release|Win32.ActiveCfg = Release|Win32 + {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Release|Win32.Build.0 = Release|Win32 + {92E9FA1E-2925-42FD-8226-A07CBD237E18}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Debug|Win32.ActiveCfg = Debug|Win32 + {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Debug|Win32.Build.0 = Debug|Win32 + {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {25F0AA82-0186-45AD-92C3-EE1F9282A038}.No Trace|Win32.ActiveCfg = Release|Win32 + {25F0AA82-0186-45AD-92C3-EE1F9282A038}.No Trace|Win32.Build.0 = Release|Win32 + {25F0AA82-0186-45AD-92C3-EE1F9282A038}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Release|Win32.ActiveCfg = Release|Win32 + {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Release|Win32.Build.0 = Release|Win32 + {25F0AA82-0186-45AD-92C3-EE1F9282A038}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Debug|Win32.ActiveCfg = Debug|Win32 + {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Debug|Win32.Build.0 = Debug|Win32 + {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {3F038BF6-B7B9-4941-AF57-8D539FC05781}.No Trace|Win32.ActiveCfg = Release|Win32 + {3F038BF6-B7B9-4941-AF57-8D539FC05781}.No Trace|Win32.Build.0 = Release|Win32 + {3F038BF6-B7B9-4941-AF57-8D539FC05781}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Release|Win32.ActiveCfg = Release|Win32 + {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Release|Win32.Build.0 = Release|Win32 + {3F038BF6-B7B9-4941-AF57-8D539FC05781}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Debug|Win32.ActiveCfg = Debug|Win32 + {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Debug|Win32.Build.0 = Debug|Win32 + {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {B0FD150D-E781-4605-B70D-32019FEFD6F1}.No Trace|Win32.ActiveCfg = Debug|Win32 + {B0FD150D-E781-4605-B70D-32019FEFD6F1}.No Trace|Win32.Build.0 = Debug|Win32 + {B0FD150D-E781-4605-B70D-32019FEFD6F1}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Release|Win32.ActiveCfg = Release|Win32 + {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Release|Win32.Build.0 = Release|Win32 + {B0FD150D-E781-4605-B70D-32019FEFD6F1}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Debug|Win32.ActiveCfg = Debug|Win32 + {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Debug|Win32.Build.0 = Debug|Win32 + {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {7CF86525-9E45-4C67-93DC-5959F1E571AE}.No Trace|Win32.ActiveCfg = Release|Win32 + {7CF86525-9E45-4C67-93DC-5959F1E571AE}.No Trace|Win32.Build.0 = Release|Win32 + {7CF86525-9E45-4C67-93DC-5959F1E571AE}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Release|Win32.ActiveCfg = Release|Win32 + {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Release|Win32.Build.0 = Release|Win32 + {7CF86525-9E45-4C67-93DC-5959F1E571AE}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Debug|Win32.ActiveCfg = Debug|Win32 + {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Debug|Win32.Build.0 = Debug|Win32 + {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.No Trace|Win32.ActiveCfg = Release|Win32 + {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.No Trace|Win32.Build.0 = Release|Win32 + {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Release|Win32.ActiveCfg = Release|Win32 + {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Release|Win32.Build.0 = Release|Win32 + {2F7CD8F0-30C8-4B70-A807-E13472EE23CA}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {3FCBA070-C605-4EE5-B078-E2461F792B36}.Debug|Win32.ActiveCfg = Debug|Win32 + {3FCBA070-C605-4EE5-B078-E2461F792B36}.Debug|Win32.Build.0 = Debug|Win32 + {3FCBA070-C605-4EE5-B078-E2461F792B36}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {3FCBA070-C605-4EE5-B078-E2461F792B36}.No Trace|Win32.ActiveCfg = Release|Win32 + {3FCBA070-C605-4EE5-B078-E2461F792B36}.No Trace|Win32.Build.0 = Release|Win32 + {3FCBA070-C605-4EE5-B078-E2461F792B36}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {3FCBA070-C605-4EE5-B078-E2461F792B36}.Release|Win32.ActiveCfg = Release|Win32 + {3FCBA070-C605-4EE5-B078-E2461F792B36}.Release|Win32.Build.0 = Release|Win32 + {3FCBA070-C605-4EE5-B078-E2461F792B36}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {EE028C0B-AF72-499F-A778-82C3645A90DB}.Debug|Win32.ActiveCfg = Debug|Win32 + {EE028C0B-AF72-499F-A778-82C3645A90DB}.Debug|Win32.Build.0 = Debug|Win32 + {EE028C0B-AF72-499F-A778-82C3645A90DB}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {EE028C0B-AF72-499F-A778-82C3645A90DB}.No Trace|Win32.ActiveCfg = Release|Win32 + {EE028C0B-AF72-499F-A778-82C3645A90DB}.No Trace|Win32.Build.0 = Release|Win32 + {EE028C0B-AF72-499F-A778-82C3645A90DB}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {EE028C0B-AF72-499F-A778-82C3645A90DB}.Release|Win32.ActiveCfg = Release|Win32 + {EE028C0B-AF72-499F-A778-82C3645A90DB}.Release|Win32.Build.0 = Release|Win32 + {EE028C0B-AF72-499F-A778-82C3645A90DB}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Debug|Win32.ActiveCfg = Debug|Win32 + {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Debug|Win32.Build.0 = Debug|Win32 + {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {9A4E2793-1D97-4B0C-BCFD-130136990E35}.No Trace|Win32.ActiveCfg = Release|Win32 + {9A4E2793-1D97-4B0C-BCFD-130136990E35}.No Trace|Win32.Build.0 = Release|Win32 + {9A4E2793-1D97-4B0C-BCFD-130136990E35}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Release|Win32.ActiveCfg = Release|Win32 + {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Release|Win32.Build.0 = Release|Win32 + {9A4E2793-1D97-4B0C-BCFD-130136990E35}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Debug|Win32.ActiveCfg = Debug|Win32 + {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Debug|Win32.Build.0 = Debug|Win32 + {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {85E1586D-70E4-41DA-B548-B78E63B25EA2}.No Trace|Win32.ActiveCfg = Debug|Win32 + {85E1586D-70E4-41DA-B548-B78E63B25EA2}.No Trace|Win32.Build.0 = Debug|Win32 + {85E1586D-70E4-41DA-B548-B78E63B25EA2}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Release|Win32.ActiveCfg = Release|Win32 + {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Release|Win32.Build.0 = Release|Win32 + {85E1586D-70E4-41DA-B548-B78E63B25EA2}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {73808A58-6491-4948-8441-90C8F35B7F59}.Debug|Win32.ActiveCfg = Debug|Win32 + {73808A58-6491-4948-8441-90C8F35B7F59}.Debug|Win32.Build.0 = Debug|Win32 + {73808A58-6491-4948-8441-90C8F35B7F59}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {73808A58-6491-4948-8441-90C8F35B7F59}.No Trace|Win32.ActiveCfg = Release|Win32 + {73808A58-6491-4948-8441-90C8F35B7F59}.No Trace|Win32.Build.0 = Release|Win32 + {73808A58-6491-4948-8441-90C8F35B7F59}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {73808A58-6491-4948-8441-90C8F35B7F59}.Release|Win32.ActiveCfg = Release|Win32 + {73808A58-6491-4948-8441-90C8F35B7F59}.Release|Win32.Build.0 = Release|Win32 + {73808A58-6491-4948-8441-90C8F35B7F59}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Debug|Win32.ActiveCfg = Debug|Win32 + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Debug|Win32.Build.0 = Debug|Win32 + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.No Trace|Win32.ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Release|Win32.ActiveCfg = Release|Win32 + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Release|Win32.Build.0 = Release|Win32 + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {D11E1C9D-406C-4D7C-8F37-913C0BFD9E0D}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Debug|Win32.ActiveCfg = Debug|Win32 + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Debug|Win32.Build.0 = Debug|Win32 + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.No Trace|Win32.ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Release|Win32.ActiveCfg = Release|Win32 + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Release|Win32.Build.0 = Release|Win32 + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {85F4F26A-1A5D-4685-A48A-448102C5C5BC}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Debug|Win32.ActiveCfg = Debug|Win32 + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Debug|Win32.Build.0 = Debug|Win32 + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.No Trace|Win32.ActiveCfg = No Trace|Win32 + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.No Trace|Win32.Build.0 = No Trace|Win32 + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Release|Win32.ActiveCfg = Release|Win32 + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Release|Win32.Build.0 = Release|Win32 + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {ED9CC7DA-08A6-4CB9-9783-F1C3799398D8}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {C7546C76-E010-4105-AEAE-48FCD6C09527}.Debug|Win32.ActiveCfg = Debug|Win32 + {C7546C76-E010-4105-AEAE-48FCD6C09527}.Debug|Win32.Build.0 = Debug|Win32 + {C7546C76-E010-4105-AEAE-48FCD6C09527}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {C7546C76-E010-4105-AEAE-48FCD6C09527}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {C7546C76-E010-4105-AEAE-48FCD6C09527}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {C7546C76-E010-4105-AEAE-48FCD6C09527}.No Trace|Win32.ActiveCfg = No Trace|Win32 + {C7546C76-E010-4105-AEAE-48FCD6C09527}.No Trace|Win32.Build.0 = No Trace|Win32 + {C7546C76-E010-4105-AEAE-48FCD6C09527}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {C7546C76-E010-4105-AEAE-48FCD6C09527}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {C7546C76-E010-4105-AEAE-48FCD6C09527}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {C7546C76-E010-4105-AEAE-48FCD6C09527}.Release|Win32.ActiveCfg = Release|Win32 + {C7546C76-E010-4105-AEAE-48FCD6C09527}.Release|Win32.Build.0 = Release|Win32 + {C7546C76-E010-4105-AEAE-48FCD6C09527}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {C7546C76-E010-4105-AEAE-48FCD6C09527}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {C7546C76-E010-4105-AEAE-48FCD6C09527}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) + {7FF55F1C-87EB-4087-8814-FD494BE49170}.Debug|Win32.ActiveCfg = Debug|Win32 + {7FF55F1C-87EB-4087-8814-FD494BE49170}.Debug|Win32.Build.0 = Debug|Win32 + {7FF55F1C-87EB-4087-8814-FD494BE49170}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {7FF55F1C-87EB-4087-8814-FD494BE49170}.No Trace|Win32.ActiveCfg = No Trace|Win32 + {7FF55F1C-87EB-4087-8814-FD494BE49170}.No Trace|Win32.Build.0 = No Trace|Win32 + {7FF55F1C-87EB-4087-8814-FD494BE49170}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = No Trace|Win32 + {7FF55F1C-87EB-4087-8814-FD494BE49170}.Release|Win32.ActiveCfg = Release|Win32 + {7FF55F1C-87EB-4087-8814-FD494BE49170}.Release|Win32.Build.0 = Release|Win32 + {7FF55F1C-87EB-4087-8814-FD494BE49170}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Debug|Win32.ActiveCfg = Debug|Win32 + {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Debug|Win32.Build.0 = Debug|Win32 + {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.No Trace|Win32.ActiveCfg = Debug|Win32 + {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.No Trace|Win32.Build.0 = Debug|Win32 + {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.No Trace|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Win32 + {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Release|Win32.ActiveCfg = Release|Win32 + {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Release|Win32.Build.0 = Release|Win32 + {7BCC8831-22E0-4D87-8E8B-F6DA0AEFBED0}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cso...@us...> - 2007-11-05 02:40:09
|
Revision: 18798 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18798&view=rev Author: csoutheren Date: 2007-11-04 18:40:14 -0800 (Sun, 04 Nov 2007) Log Message: ----------- Helps if the mutex was actually used... Modified Paths: -------------- ptlib/trunk/src/ptlib/common/sockets.cxx Modified: ptlib/trunk/src/ptlib/common/sockets.cxx =================================================================== --- ptlib/trunk/src/ptlib/common/sockets.cxx 2007-11-05 02:36:20 UTC (rev 18797) +++ ptlib/trunk/src/ptlib/common/sockets.cxx 2007-11-05 02:40:14 UTC (rev 18798) @@ -2533,7 +2533,8 @@ str.MakeMinimumSize(); return str; # else - static PCriticalSection m; + static PCriticalSection x; + PWaitAndSignal m(x); return inet_ntoa(v.four); #endif // P_HAS_INET_NTOP #endif // P_VXWORKS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rjo...@us...> - 2007-11-05 02:36:18
|
Revision: 18797 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18797&view=rev Author: rjongbloed Date: 2007-11-04 18:36:20 -0800 (Sun, 04 Nov 2007) Log Message: ----------- Fixed dependency of HTTP service on HTTP in Windows configure. Modified Paths: -------------- ptlib/trunk/configure.ac Modified: ptlib/trunk/configure.ac =================================================================== --- ptlib/trunk/configure.ac 2007-11-05 01:27:39 UTC (rev 18796) +++ ptlib/trunk/configure.ac 2007-11-05 02:36:20 UTC (rev 18797) @@ -2064,7 +2064,7 @@ dnl MSWIN_DISPLAY httpsvc,HTTP service Support dnl MSWIN_DEFINE httpsvc,P_HTTPSVC -dnl MSWIN_IF_FEATURE httpsvc,!http +dnl MSWIN_IF_FEATURE httpsvc,http AC_ARG_ENABLE(httpsvc, [ --disable-httpsvc disable HTTP service support]) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |