DubSource.h
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:3k
源码类别:

VC书籍

开发平台:

Visual C++

  1. // VirtualDub - Video processing and capture application
  2. // Copyright (C) 1998-2001 Avery Lee
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; either version 2 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with this program; if not, write to the Free Software
  16. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. #ifndef f_DUBSOURCE_H
  18. #define f_DUBSOURCE_H
  19. #include <windows.h>
  20. #include <vfw.h>
  21. class InputFile;
  22. class DubSource {
  23. private:
  24. void * format;
  25. int format_len;
  26. protected:
  27. void *allocFormat(int format_len);
  28. virtual BOOL _isKey(LONG lSample);
  29. public:
  30. LONG lSampleFirst, lSampleLast;
  31. AVISTREAMINFO streamInfo;
  32. DubSource();
  33. virtual ~DubSource();
  34. virtual BOOL init();
  35. int read(LONG lStart, LONG lCount, LPVOID lpBuffer, LONG cbBuffer, LONG *lBytesRead, LONG *lSamplesRead);
  36. virtual int _read(LONG lStart, LONG lCount, LPVOID lpBuffer, LONG cbBuffer, LONG *lBytesRead, LONG *lSamplesRead) = 0;
  37. void *getFormat() const { return format; }
  38. int getFormatLen() const { return format_len; }
  39. virtual bool isStreaming();
  40. BOOL isKey(LONG lSample);
  41. virtual LONG nearestKey(LONG lSample);
  42. virtual LONG prevKey(LONG lSample);
  43. virtual LONG nextKey(LONG lSample);
  44. virtual void streamBegin( bool fRealTime);
  45. virtual void streamEnd();
  46. LONG msToSamples(LONG lMs) const {
  47. return (LONG)(((__int64)lMs * streamInfo.dwRate + (__int64)500 * streamInfo.dwScale) / ((__int64)1000 * streamInfo.dwScale));
  48. }
  49. LONG samplesToMs(LONG lSamples) const {
  50. return (LONG)(
  51. (((__int64)lSamples * streamInfo.dwScale) * 1000 + streamInfo.dwRate/2) / streamInfo.dwRate
  52. );
  53. }
  54. // This is more accurate than AVIStreamSampleToSample(), which does a conversion to
  55. // milliseconds and back.
  56. static LONG samplesToSamples(const AVISTREAMINFO *dest, const AVISTREAMINFO *source, LONG lSamples) {
  57. __int64 divisor = (__int64)source->dwRate * dest->dwScale;
  58. return (LONG)((((__int64)lSamples * source->dwScale) * dest->dwRate + divisor/2)
  59. / divisor);
  60. }
  61. LONG samplesToSamples(const DubSource *source, LONG lSamples) const {
  62. return samplesToSamples(&streamInfo, &source->streamInfo, lSamples);
  63. }
  64. };
  65. #endif