DubSource.cpp
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:2k
源码类别:

多媒体编程

开发平台:

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. #include "DubSource.h"
  18. DubSource::DubSource() {
  19. format = NULL;
  20. }
  21. DubSource::~DubSource() {
  22. if (format) delete format;
  23. }
  24. BOOL DubSource::init() {
  25. return TRUE;
  26. }
  27. void *DubSource::allocFormat(int format_len) {
  28. if (format) delete format;
  29. return format = (void *)new char[this->format_len = format_len];
  30. }
  31. bool DubSource::isStreaming() {
  32. return false;
  33. }
  34. int DubSource::read(LONG lStart, LONG lCount, LPVOID lpBuffer, LONG cbBuffer, LONG *lBytesRead, LONG *lSamplesRead) {
  35. if (lStart < lSampleFirst) return AVIERR_BADPARAM;
  36. if (lStart >= lSampleLast) {
  37. if (lSamplesRead)
  38. *lSamplesRead = 0;
  39. if (lBytesRead)
  40. *lBytesRead = 0;
  41. return 0;
  42. }
  43. if (lCount>0 && lCount > lSampleLast - lStart) lCount = lSampleLast - lStart;
  44. return _read(lStart, lCount, lpBuffer, cbBuffer, lBytesRead, lSamplesRead);
  45. }
  46. BOOL DubSource::isKey(LONG lSample) {
  47. if (lSample<lSampleFirst || lSample>=lSampleLast) return TRUE;
  48. return _isKey(lSample);
  49. }
  50. BOOL DubSource::_isKey(LONG lSample) {
  51. return TRUE;
  52. }
  53. LONG DubSource::nearestKey(LONG lSample) {
  54. return lSample;
  55. }
  56. LONG DubSource::prevKey(LONG lSample) {
  57. return lSample <= lSampleFirst ? -1 : lSample-1;
  58. }
  59. LONG DubSource::nextKey(LONG lSample) {
  60. return lSample+1 >= lSampleFirst ? -1 : lSample+1;
  61. }
  62. void DubSource::streamBegin(bool fRealTime) {
  63. }
  64. void DubSource::streamEnd() {
  65. }