Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2012-11-01 22:29:57 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2012-11-01 22:35:29 +0400
commit224c816cf29c5243064e7047a96a16e7c6b12304 (patch)
tree3b2e41b1afada178e2d03cfa4649e4258ee41ba7 /decoder/LAVVideo/LAVVideo.h
parentdb41affe87e66b8394bc6b0888baacf3a9b72864 (diff)
Always save the last image in a DVD menu, even if its not a EOS frame.
Diffstat (limited to 'decoder/LAVVideo/LAVVideo.h')
-rw-r--r--decoder/LAVVideo/LAVVideo.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/decoder/LAVVideo/LAVVideo.h b/decoder/LAVVideo/LAVVideo.h
index b59bc13e..85237b7f 100644
--- a/decoder/LAVVideo/LAVVideo.h
+++ b/decoder/LAVVideo/LAVVideo.h
@@ -153,6 +153,7 @@ public:
STDMETHODIMP_(LAVFrame*) GetFlushFrame();
STDMETHODIMP RedrawStillImage();
+ STDMETHODIMP SetInDVDMenu(bool menu) { m_bInDVDMenu = menu; return S_OK; }
public:
// Pin Configuration
@@ -210,6 +211,8 @@ private:
DWORD m_bMadVR;
DWORD m_dwDecodeFlags;
+ BOOL m_bInDVDMenu;
+
AVFilterGraph *m_pFilterGraph;
AVFilterContext *m_pFilterBufferSrc;
AVFilterContext *m_pFilterBufferSink;