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.

82 lines
2.0 KiB

  1. //==========================================================================;
  2. //
  3. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4. // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5. // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6. // PURPOSE.
  7. //
  8. // Copyright (c) 1997 Microsoft Corporation. All Rights Reserved.
  9. //
  10. //
  11. // History:
  12. // 22-Aug-97 TKB Created Initial Interface Version
  13. //
  14. //==========================================================================;
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include <windows.h>
  18. #include <icodec.h>
  19. //////////////////////////////////////////////////////////////
  20. // IBitmaskProperty::
  21. //////////////////////////////////////////////////////////////
  22. IBitmaskProperty::~IBitmaskProperty()
  23. {
  24. }
  25. //////////////////////////////////////////////////////////////
  26. // IScanlinesProperty::
  27. //////////////////////////////////////////////////////////////
  28. IScanlinesProperty::~IScanlinesProperty()
  29. {
  30. }
  31. //////////////////////////////////////////////////////////////
  32. // ISubstreamsProperty::
  33. //////////////////////////////////////////////////////////////
  34. ISubstreamsProperty::~ISubstreamsProperty()
  35. {
  36. }
  37. //////////////////////////////////////////////////////////////
  38. // IStatisticsProperty::
  39. //////////////////////////////////////////////////////////////
  40. IStatisticsProperty::~IStatisticsProperty()
  41. {
  42. }
  43. //////////////////////////////////////////////////////////////
  44. // IVBIOutputPin
  45. //////////////////////////////////////////////////////////////
  46. IVBIOutputPin::~IVBIOutputPin()
  47. {
  48. }
  49. //////////////////////////////////////////////////////////////
  50. // IVBICodec::
  51. //////////////////////////////////////////////////////////////
  52. IVBICodec::~IVBICodec()
  53. {
  54. }
  55. //////////////////////////////////////////////////////////////
  56. // Embedded class tests
  57. //////////////////////////////////////////////////////////////
  58. #if defined(_CLASSTESTS)
  59. IVBICodec TestCodec("Closed Caption Decoder");
  60. #endif
  61. /*EOF*/