[svn] / trunk / xvidcore / dshow / src / CXvidDecoder.h Repository:
ViewVC logotype

Diff of /trunk/xvidcore/dshow/src/CXvidDecoder.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2018, Wed Jun 15 19:09:17 2011 UTC revision 2113, Sun Jun 14 19:17:57 2015 UTC
# Line 3  Line 3 
3   *  XVID MPEG-4 VIDEO CODEC   *  XVID MPEG-4 VIDEO CODEC
4   *  - XviD Decoder part of the DShow Filter  -   *  - XviD Decoder part of the DShow Filter  -
5   *   *
6   *  Copyright(C) 2002-2010 Peter Ross <pross@xvid.org>   *  Copyright(C) 2002-2012 Peter Ross <pross@xvid.org>
7   *   *
8   *  This program is free software ; you can redistribute it and/or modify   *  This program is free software ; you can redistribute it and/or modify
9   *  it under the terms of the GNU General Public License as published by   *  it under the terms of the GNU General Public License as published by
# Line 26  Line 26 
26  #ifndef _FILTER_H_  #ifndef _FILTER_H_
27  #define _FILTER_H_  #define _FILTER_H_
28    
29    #include <time.h>
30  #include <xvid.h>  #include <xvid.h>
31  #include "IXvidDecoder.h"  #include "IXvidDecoder.h"
32    
33  #define XVID_NAME_L             L"Xvid MPEG-4 Video Decoder"  #define XVID_NAME_L             L"Xvid MPEG-4 Video Decoder"
34    #define XVID_NAME_MFT_L L"Xvid MPEG-4 Video Decoder MFT"
35    
36  /* --- fourcc --- */  /* --- fourcc --- */
37    
# Line 153  Line 155 
155    
156  private :  private :
157    
158          HRESULT ChangeColorspace(GUID subtype, GUID formattype, void * format, int noflip);          HRESULT ChangeColorspace(GUID subtype, GUID formattype, void * format, int *bitdepth, int noflip);
159          HRESULT OpenLib();          HRESULT OpenLib();
160          void CloseLib();          void CloseLib();
161    
# Line 161  Line 163 
163          xvid_dec_frame_t m_frame;          xvid_dec_frame_t m_frame;
164    
165          HINSTANCE m_hdll;          HINSTANCE m_hdll;
166          int (__cdecl *xvid_global_func)(void *handle, int opt, void *param1, void *param2);          int (*xvid_global_func)(void *handle, int opt, void *param1, void *param2);
167          int (__cdecl *xvid_decore_func)(void *handle, int opt, void *param1, void *param2);          int (*xvid_decore_func)(void *handle, int opt, void *param1, void *param2);
168          UINT ar_x, ar_y;          int ar_x, ar_y;
169          bool forced_ar;          bool forced_ar;
170    
171          int rgb_flip;          int rgb_flip;
172          int out_stride;          int out_stride;
173    
174            clock_t m_startClock;
175            int m_tray_icon;
176    
177          /* mft stuff */          /* mft stuff */
178  #if defined(XVID_USE_MFT)  #if defined(XVID_USE_MFT)
179          BOOL HasPendingOutput() const { return m_frame.output.plane[1] != NULL; }          BOOL HasPendingOutput() const { return m_frame.output.plane[1] != NULL; }
# Line 176  Line 181 
181          HRESULT OnSetInputType(IMFMediaType *pmt);          HRESULT OnSetInputType(IMFMediaType *pmt);
182          HRESULT OnCheckInputType(IMFMediaType *pmt);          HRESULT OnCheckInputType(IMFMediaType *pmt);
183    
184          HRESULT OnSetOutputType(IMFMediaType *pmt);          HRESULT OnSetOutputType(IMFMediaType *pmt, int bitdepth);
185    
186          IMFMediaType *m_pInputType;          IMFMediaType *m_pInputType;
187          IMFMediaType *m_pOutputType;          IMFMediaType *m_pOutputType;
188            int m_pOutputTypeBPP;
189    
190          CRITICAL_SECTION m_mft_lock;          CRITICAL_SECTION m_mft_lock;
191          REFERENCE_TIME m_timestamp;          REFERENCE_TIME m_timestamp;
# Line 191  Line 197 
197          REFERENCE_TIME m_rtFrame;          REFERENCE_TIME m_rtFrame;
198          MFRatio m_frameRate;          MFRatio m_frameRate;
199          UINT64 m_duration;          UINT64 m_duration;
 #endif  
200    
201  #ifdef XVID_USE_TRAYICON          HANDLE m_thread_handle;
202          HWND MSG_hwnd; /* message handler window */  #endif
203  };  };
204  #define WM_ICONMESSAGE (WM_USER + 1)  #define WM_ICONMESSAGE (WM_USER + 1)
 #else  
 };  
 #endif  
205    
206  static const int PARS[][2] = {  static const int PARS[][2] = {
207          {1, 1},          {1, 1},

Legend:
Removed from v.2018  
changed lines
  Added in v.2113

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4