startaudio.cpp
上传用户:hnnddl
上传日期:2007-01-06
资源大小:3580k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

WINDOWS

  1. /*
  2.  * $Revision: 1.4 $
  3.  * $Date: 1998/06/08 16:57:51 $
  4.  */
  5. ////////////////////////////////////////////////////////////////
  6. //               Copyright (c) 1996-98 Lucent Technologies    //
  7. //                       All Rights Reserved                  //
  8. //                                                            //
  9. //                       THIS IS UNPUBLISHED                  //
  10. //                       PROPRIETARY SOURCE                   //
  11. //                   CODE OF Lucent Technologies              //
  12. // AND elemedia   //
  13. //                                                            //
  14. //           The copyright notice above does not evidence any //
  15. //          actual or intended publication of such source code//
  16. ////////////////////////////////////////////////////////////////
  17. //
  18. ////////////////////////////////////////////////////////////////
  19. // Example programs are provided soley to demonstrate one     //
  20. // possible use of the stack libraries and are included for   //
  21. // instructional purposes only.  You are free to use, modify  //
  22. // and/or redistribute any portion of code in the example     //
  23. // programs.  However, such examples are not intended to      //
  24. // represent production quality code.                         //
  25. //                                                            //
  26. // THE COPYRIGHT HOLDERS PROVIDE THESE EXAMPLE PROGRAMS       //
  27. // "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED     //
  28. // OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED     //
  29. // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A            //
  30. // PARTICULAR PURPOSE.                                        //
  31. ////////////////////////////////////////////////////////////////
  32. #include "exchange.h"
  33. #include "call.h"
  34. #include "msg.h"
  35. #include "api/h225ie.h"
  36. #include <assert.h>
  37. int
  38. H323Call::StartAudio()
  39. {
  40. LOG("H323Call::StartAudio");
  41. #if defined(DISABLE_AUDIO)
  42. return 0;
  43. #else
  44. assert(audio_session);
  45. return audio_session->StartSession();
  46. #endif
  47. }