blob: e8268ef369e8be8438fb4db413c6c5fc6c2bb8df [file]
// Copyright (c) 2013 The WebM project authors. All Rights Reserved.
//
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file in the root of the source
// tree. An additional intellectual property rights grant can be found
// in the file PATENTS. All contributing project authors may
// be found in the AUTHORS file in the root of the source tree.
#pragma once
#include <strmif.h>
#include <string>
#include "vp9decoderinpin.hpp"
#include "vp9decoderoutpin.hpp"
#include "clockable.hpp"
namespace VP9DecoderLib
{
class Filter : public IBaseFilter,
//public IVP8PostProcessing,
public CLockable
{
friend HRESULT CreateInstance(
IClassFactory*,
IUnknown*,
const IID&,
void**);
Filter(IClassFactory*, IUnknown*);
virtual ~Filter();
Filter(const Filter&);
Filter& operator=(const Filter&);
public:
//IUnknown
HRESULT STDMETHODCALLTYPE QueryInterface(const IID&, void**);
ULONG STDMETHODCALLTYPE AddRef();
ULONG STDMETHODCALLTYPE Release();
//IBaseFilter
HRESULT STDMETHODCALLTYPE GetClassID(CLSID*);
HRESULT STDMETHODCALLTYPE Stop();
HRESULT STDMETHODCALLTYPE Pause();
HRESULT STDMETHODCALLTYPE Run(REFERENCE_TIME);
HRESULT STDMETHODCALLTYPE GetState(DWORD, FILTER_STATE*);
HRESULT STDMETHODCALLTYPE SetSyncSource(IReferenceClock*);
HRESULT STDMETHODCALLTYPE GetSyncSource(IReferenceClock**);
HRESULT STDMETHODCALLTYPE EnumPins(IEnumPins**);
HRESULT STDMETHODCALLTYPE FindPin(LPCWSTR, IPin**);
HRESULT STDMETHODCALLTYPE QueryFilterInfo(FILTER_INFO*);
HRESULT STDMETHODCALLTYPE JoinFilterGraph(IFilterGraph*, LPCWSTR);
HRESULT STDMETHODCALLTYPE QueryVendorInfo(LPWSTR*);
FILTER_STATE GetStateLocked() const;
HRESULT OnDecodeFailureLocked();
void OnDecodeSuccessLocked(bool is_key);
private:
class CNondelegating : public IUnknown
{
CNondelegating(const CNondelegating&);
CNondelegating& operator=(const CNondelegating&);
public:
Filter* const m_pFilter;
LONG m_cRef;
explicit CNondelegating(Filter*);
virtual ~CNondelegating();
HRESULT STDMETHODCALLTYPE QueryInterface(const IID&, void**);
ULONG STDMETHODCALLTYPE AddRef();
ULONG STDMETHODCALLTYPE Release();
};
IClassFactory* const m_pClassFactory;
CNondelegating m_nondelegating;
IUnknown* const m_pOuter; //decl must follow m_nondelegating
REFERENCE_TIME m_start;
IReferenceClock* m_clock;
//https://code.google.com/p/webm/issues/detail?id=560
enum State
{
kStateStopped,
kStatePausedWaitingForKeyframe,
kStatePaused,
kStateRunning,
kStateRunningWaitingForKeyframe
};
State m_state;
private:
void OnStop();
void OnStart();
public:
FILTER_INFO m_info;
Inpin m_inpin;
Outpin m_outpin;
};
} //end namespace VP9DecoderLib