fix generic compile

This commit is contained in:
TangoCash
2021-08-30 21:03:54 +02:00
committed by Thilo Graf
parent 4eb8165387
commit 09f5247a1a
2 changed files with 10 additions and 0 deletions

View File

@@ -78,6 +78,12 @@ class cAudio : public OpenThreads::Thread
{ {
return NULL; return NULL;
}; };
void setAVInput(int val)
{
return;
};
/* shut up */ /* shut up */
int mute(bool remember = true) int mute(bool remember = true)
{ {

View File

@@ -208,6 +208,10 @@ class cVideo : public OpenThreads::Thread
{ {
return NULL; return NULL;
}; };
void setAVInput(int val)
{
return;
};
/* aspect ratio */ /* aspect ratio */
int getAspectRatio(void); int getAspectRatio(void);