libeplayer3: change teletext handling to directly inject packets in tuxtext

This commit is contained in:
martii
2014-03-23 13:54:40 +01:00
parent 4ca4f581d5
commit daaa1ca8df
7 changed files with 9 additions and 416 deletions

View File

@@ -65,7 +65,6 @@ static const char *FILENAME = "output.c";
static Output_t *AvailableOutput[] = {
&LinuxDvbOutput,
&PipeOutput,
NULL
};
@@ -114,10 +113,6 @@ static void OutputAdd(Context_t * context, char *port)
context->output->video = AvailableOutput[i];
return;
}
if (!strcmp("teletext", port)) {
context->output->teletext = AvailableOutput[i];
return;
}
}
}