Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.2 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. // INTEL Corporation Proprietary Information
  3. // This listing is supplied under the terms of a license agreement with Intel
  4. // Corporation and many not be copied nor disclosed except in accordance
  5. // with the terms of that agreement.
  6. // Copyright (c) 1995, 1996 Intel Corporation.
  7. //
  8. //
  9. // Module Name: gen_asnd.cpp
  10. // Environment: MSVC 4.0, OLE 2
  11. /////////////////////////////////////////////////////////////////////////////////
  12. #include "gen_asnd.h"
  13. Generic_a_ppmSend::Generic_a_ppmSend(IUnknown* pUnkOuter,
  14. IUnknown** ppUnkInner) :
  15. ppmSend(-1, 0,
  16. 8000, pUnkOuter, ppUnkInner)
  17. {
  18. }
  19. Generic_a_ppmSend::~Generic_a_ppmSend()
  20. {
  21. }
  22. IMPLEMENT_CREATEPROC(Generic_a_ppmSend);
  23. //////////////////////////////////////////////////////////////////////////////////////////
  24. //SetMarkerBit: Determines whether to set the marker bit or not. lastPacket is TRUE if
  25. // this is the last packet of the frame; FALSE if not. With audio, we don't
  26. // don't care about fragmentation, just the start of a talkspurt.
  27. //////////////////////////////////////////////////////////////////////////////////////////
  28. BOOL Generic_a_ppmSend::SetMarkerBit(BOOL lastPacket)
  29. {
  30. return m_markTalkSpurt;
  31. }