mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
Compatibility to VDR 1.7.1 (#483)
This commit is contained in:
parent
c5b5a4cbeb
commit
992444cb67
@ -44,6 +44,7 @@ Udo Richter
|
|||||||
for fixing streamdev-server shutdown
|
for fixing streamdev-server shutdown
|
||||||
for speeding up cPluginStreamdevServer::Active()
|
for speeding up cPluginStreamdevServer::Active()
|
||||||
for adapting to VDR 1.5.0 API
|
for adapting to VDR 1.5.0 API
|
||||||
|
for adapting to VDR 1.7.1
|
||||||
|
|
||||||
greenman
|
greenman
|
||||||
for reporting that the log could get flooded on connection failures.
|
for reporting that the log could get flooded on connection failures.
|
||||||
|
1
HISTORY
1
HISTORY
@ -1,6 +1,7 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- compatibility for VDR 1.7.1 (thanks to Udo Richter)
|
||||||
- added vdr-1.6.0-intcamdevices.patch (thanks to Anssi Hannula)
|
- added vdr-1.6.0-intcamdevices.patch (thanks to Anssi Hannula)
|
||||||
- fixed problem when switching from one encrypted channel to an other
|
- fixed problem when switching from one encrypted channel to an other
|
||||||
(reported by Tiroler@vdrportal, initial bugfix by pixelpeter@vdrportal)
|
(reported by Tiroler@vdrportal, initial bugfix by pixelpeter@vdrportal)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: filter.c,v 1.12 2008/04/07 14:27:28 schmirl Exp $
|
* $Id: filter.c,v 1.13 2008/10/13 11:30:06 schmirl Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "client/filter.h"
|
#include "client/filter.h"
|
||||||
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
#include <vdr/device.h>
|
#include <vdr/device.h>
|
||||||
|
|
||||||
|
#define PID_MASK_HI 0x1F
|
||||||
// --- cStreamdevFilter ------------------------------------------------------
|
// --- cStreamdevFilter ------------------------------------------------------
|
||||||
|
|
||||||
class cStreamdevFilter: public cListObject {
|
class cStreamdevFilter: public cListObject {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#include "remux/tsremux.h"
|
#include "remux/tsremux.h"
|
||||||
|
|
||||||
#define SC_PICTURE 0x00 // "picture header"
|
#define SC_PICTURE 0x00 // "picture header"
|
||||||
|
#define PID_MASK_HI 0x1F
|
||||||
|
|
||||||
void cTSRemux::SetBrokenLink(uchar *Data, int Length)
|
void cTSRemux::SetBrokenLink(uchar *Data, int Length)
|
||||||
{
|
{
|
||||||
|
@ -3,13 +3,14 @@
|
|||||||
#include <libsi/section.h>
|
#include <libsi/section.h>
|
||||||
#include <libsi/descriptor.h>
|
#include <libsi/descriptor.h>
|
||||||
|
|
||||||
|
#include "remux/ts2ps.h"
|
||||||
|
#include "remux/ts2es.h"
|
||||||
|
#include "remux/extern.h"
|
||||||
|
|
||||||
#include <vdr/ringbuffer.h>
|
#include <vdr/ringbuffer.h>
|
||||||
|
|
||||||
#include "server/livestreamer.h"
|
#include "server/livestreamer.h"
|
||||||
#include "server/livefilter.h"
|
#include "server/livefilter.h"
|
||||||
#include "remux/ts2ps.h"
|
|
||||||
#include "remux/ts2es.h"
|
|
||||||
#include "remux/extern.h"
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
#define TSPATREPACKER
|
#define TSPATREPACKER
|
||||||
|
@ -3,15 +3,15 @@
|
|||||||
*
|
*
|
||||||
* See the README file for copyright information and how to reach the author.
|
* See the README file for copyright information and how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: streamdev-server.c,v 1.9 2008/04/29 07:00:53 schmirl Exp $
|
* $Id: streamdev-server.c,v 1.10 2008/10/13 11:30:05 schmirl Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
|
#include "remux/extern.h"
|
||||||
#include "streamdev-server.h"
|
#include "streamdev-server.h"
|
||||||
#include "server/setup.h"
|
#include "server/setup.h"
|
||||||
#include "server/server.h"
|
#include "server/server.h"
|
||||||
#include "server/suspend.h"
|
#include "server/suspend.h"
|
||||||
#include "remux/extern.h"
|
|
||||||
|
|
||||||
#if !defined(APIVERSNUM) || APIVERSNUM < 10509
|
#if !defined(APIVERSNUM) || APIVERSNUM < 10509
|
||||||
#error "VDR-1.5.9 API version or greater is required!"
|
#error "VDR-1.5.9 API version or greater is required!"
|
||||||
|
Loading…
Reference in New Issue
Block a user