- Remove some globals from vcrcontrol

- Allow ttx/epg keys for timeshift
- Fix record+live streaming
- Live stream code changes for testing
- Changes to handle internal CA multi-decoding
- hack for -Werror compiling



git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1040 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
focus
2011-01-25 17:22:38 +00:00
parent 80f321484a
commit ab0f7f731c
21 changed files with 306 additions and 214 deletions

View File

@@ -55,7 +55,7 @@ int tuxtxt_stop()
return tuxtxt_stop_thread();
}
void tuxtxt_start(int tpid)
void tuxtxt_start(int tpid, int source)
{
if (tuxtxt_cache.vtxtpid != tpid)
{
@@ -63,11 +63,11 @@ void tuxtxt_start(int tpid)
tuxtxt_clear_cache();
tuxtxt_cache.page = 0x100;
tuxtxt_cache.vtxtpid = tpid;
tuxtxt_start_thread();
tuxtxt_start_thread(source);
}
else if (!tuxtxt_cache.thread_starting && !tuxtxt_cache.receiving)
{
tuxtxt_start_thread();
tuxtxt_start_thread(source);
}
}