buffer.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * buffer.c : DirectMedia Object decoder module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2002, 2003 VideoLAN
  5.  * $Id: buffer.c 8409 2004-08-09 10:25:42Z gbazin $
  6.  *
  7.  * Author: Gildas Bazin <gbazin@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>
  27. #include <stdio.h>
  28. #include <string.h>
  29. #include <vlc/vlc.h>
  30. #include <vlc/decoder.h>
  31. #include <vlc/vout.h>
  32. #ifndef WIN32
  33. #    define LOADER
  34. #else
  35. #   include <objbase.h>
  36. #endif
  37. #ifdef LOADER
  38. #   include <wine/winerror.h>
  39. #   include <wine/windef.h>
  40. #endif
  41. #include "codecs.h"
  42. #include "dmo.h"
  43. static long STDCALL QueryInterface( IUnknown *This,
  44.                                     const GUID *riid, void **ppv )
  45. {
  46.     CMediaBuffer *p_mb = (CMediaBuffer *)This;
  47.     if( !memcmp( riid, &IID_IUnknown, sizeof(GUID) ) ||
  48.         !memcmp( riid, &IID_IMediaBuffer, sizeof(GUID) ) )
  49.     {
  50.         p_mb->i_ref++;
  51.         *ppv = (void *)This;
  52.         return NOERROR;
  53.     }
  54.     else
  55.     {
  56.         *ppv = NULL;
  57.         return E_NOINTERFACE;
  58.     }
  59. }
  60. static long STDCALL AddRef( IUnknown *This )
  61. {
  62.     CMediaBuffer *p_mb = (CMediaBuffer *)This;
  63.     return p_mb->i_ref++;
  64. }
  65. static long STDCALL Release( IUnknown *This )
  66. {
  67.     CMediaBuffer *p_mb = (CMediaBuffer *)This;
  68.     p_mb->i_ref--;
  69.     if( p_mb->i_ref == 0 )
  70.     {
  71.         if( p_mb->b_own ) block_Release( p_mb->p_block );
  72.         free( p_mb->vt );
  73.         free( p_mb );
  74.     }
  75.     return 0;
  76. }
  77. static long STDCALL SetLength( IMediaBuffer *This, uint32_t cbLength )
  78. {
  79.     CMediaBuffer *p_mb = (CMediaBuffer *)This;
  80.     if( cbLength > p_mb->i_max_size ) return E_INVALIDARG;
  81.     p_mb->p_block->i_buffer = cbLength;
  82.     return S_OK;
  83. }
  84. static long STDCALL GetMaxLength( IMediaBuffer *This, uint32_t *pcbMaxLength )
  85. {
  86.     CMediaBuffer *p_mb = (CMediaBuffer *)This;
  87.     if( !pcbMaxLength ) return E_POINTER;
  88.     *pcbMaxLength = p_mb->i_max_size;
  89.     return S_OK;
  90. }
  91. static long STDCALL GetBufferAndLength( IMediaBuffer *This,
  92.                                         char **ppBuffer, uint32_t *pcbLength )
  93. {
  94.     CMediaBuffer *p_mb = (CMediaBuffer *)This;
  95.     if( !ppBuffer && !pcbLength ) return E_POINTER;
  96.     if( ppBuffer ) *ppBuffer = p_mb->p_block->p_buffer;
  97.     if( pcbLength ) *pcbLength = p_mb->p_block->i_buffer;
  98.     return S_OK;
  99. }
  100. CMediaBuffer *CMediaBufferCreate( block_t *p_block, int i_max_size,
  101.                                   vlc_bool_t b_own )
  102. {
  103.     CMediaBuffer *p_mb = (CMediaBuffer *)malloc( sizeof(CMediaBuffer) );
  104.     if( !p_mb ) return NULL;
  105.     p_mb->vt = (IMediaBuffer_vt *)malloc( sizeof(IMediaBuffer_vt) );
  106.     if( !p_mb->vt )
  107.     {
  108.         free( p_mb );
  109.         return NULL;
  110.     }
  111.     p_mb->i_ref = 1;
  112.     p_mb->p_block = p_block;
  113.     p_mb->i_max_size = i_max_size;
  114.     p_mb->b_own = b_own;
  115.     p_mb->vt->QueryInterface = QueryInterface;
  116.     p_mb->vt->AddRef = AddRef;
  117.     p_mb->vt->Release = Release;
  118.     p_mb->vt->SetLength = SetLength;
  119.     p_mb->vt->GetMaxLength = GetMaxLength;
  120.     p_mb->vt->GetBufferAndLength = GetBufferAndLength;
  121.     return p_mb;
  122. }