]> git.sesse.net Git - vlc/blob - modules/video_filter/atmo/AtmoInput.cpp
pda gui: Set prio to 0, so it is not eligible for automatic selection. This is bad...
[vlc] / modules / video_filter / atmo / AtmoInput.cpp
1 /*
2  * AtmoInput.cpp:  abstract class for retrieving precalculated image data
3  * from different sources in the live view mode
4  *
5  *
6  * See the README.txt file for copyright information and how to reach the author(s).
7  *
8  * $Id$
9  */
10
11 #include "AtmoInput.h"
12
13 CAtmoInput::CAtmoInput(CAtmoDynData *pAtmoDynData)
14 {
15   this->m_pAtmoDynData = pAtmoDynData;
16 }
17
18 CAtmoInput::~CAtmoInput(void)
19 {
20 }
21
22 void CAtmoInput::WaitForNextFrame(DWORD timeout)
23 {
24     return;
25 }
26