pip variables renamed

This commit is contained in:
BPanther
2021-10-09 22:26:56 +02:00
committed by Thilo Graf
parent cfd1c2c593
commit c461d83c5f
5 changed files with 7 additions and 4 deletions

View File

@@ -38,7 +38,7 @@ enum
}; };
cAudio *audioDecoder = NULL; cAudio *audioDecoder = NULL;
cAudio *pipAudioDecoder = NULL; cAudio *pipAudioDecoder[3] = { NULL, NULL, NULL };
static const char *ADEV[] = static const char *ADEV[] =
{ {

View File

@@ -58,6 +58,9 @@ cDemux *videoDemux = NULL;
cDemux *audioDemux = NULL; cDemux *audioDemux = NULL;
//cDemux *pcrDemux = NULL; //cDemux *pcrDemux = NULL;
cDemux *pipVideoDemux[3] = { NULL, NULL, NULL };
cDemux *pipAudioDemux[3] = { NULL, NULL, NULL };
static const char *DMX_T[] = static const char *DMX_T[] =
{ {
"DMX_INVALID", "DMX_INVALID",

View File

@@ -80,7 +80,7 @@ enum
}; };
cVideo *videoDecoder = NULL; cVideo *videoDecoder = NULL;
cVideo *pipDecoder = NULL; cVideo *pipVideoDecoder[3] = { NULL, NULL, NULL };
int system_rev = 0; int system_rev = 0;

View File

@@ -27,7 +27,7 @@ enum
}; };
cAudio *audioDecoder = NULL; cAudio *audioDecoder = NULL;
cAudio *pipAudioDecoder = NULL; cAudio *pipAudioDecoder[3] = { NULL, NULL, NULL };
static const char *ADEV[] = static const char *ADEV[] =
{ {

View File

@@ -73,7 +73,7 @@ enum
}; };
cVideo *videoDecoder = NULL; cVideo *videoDecoder = NULL;
cVideo *pipDecoder = NULL; cVideo *pipVideoDecoder[3] = { NULL, NULL, NULL };
int system_rev = 0; int system_rev = 0;