Streamdev 0.5.0

This commit is contained in:
Frank Schmirler
2010-12-02 09:51:02 +01:00
parent 91c5199ac3
commit e0a00f90ae
25 changed files with 56 additions and 36 deletions

View File

@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
# $Id: Makefile,v 1.1.2.2 2010/06/20 19:12:56 schmirl Exp $
# $Id: Makefile,v 1.2 2010/07/19 13:49:31 schmirl Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.

View File

@@ -1,5 +1,5 @@
/*
* $Id: connection.c,v 1.13.2.1 2010/06/11 06:06:02 schmirl Exp $
* $Id: connection.c,v 1.14 2010/07/19 13:49:31 schmirl Exp $
*/
#include "server/connection.h"

View File

@@ -1,5 +1,5 @@
/*
* $Id: connection.h,v 1.8.2.1 2010/06/11 06:06:02 schmirl Exp $
* $Id: connection.h,v 1.9 2010/07/19 13:49:31 schmirl Exp $
*/
#ifndef VDR_STREAMDEV_SERVER_CONNECTION_H

View File

@@ -1,5 +1,5 @@
/*
* $Id: connectionHTTP.c,v 1.17.2.1 2010/06/11 06:06:02 schmirl Exp $
* $Id: connectionHTTP.c,v 1.19 2010/07/20 12:26:29 schmirl Exp $
*/
#include <ctype.h>
@@ -336,7 +336,7 @@ bool cConnectionHTTP::ProcessURI(const std::string& PathInfo)
Dprintf("before channelfromstring: type(%s) filespec(%s) fileext(%s)\n", type.c_str(), filespec.c_str(), fileext.c_str());
if ((m_ChannelList = ChannelListFromString(PathInfo.substr(0, file_pos), filespec.c_str(), fileext.c_str())) != NULL) {
if ((m_ChannelList = ChannelListFromString(PathInfo.substr(1, file_pos), filespec.c_str(), fileext.c_str())) != NULL) {
Dprintf("Channel list requested\n");
return true;
} else if ((m_Channel = ChannelFromString(filespec.c_str(), &m_Apid[0], &m_Dpid[0])) != NULL) {

View File

@@ -1,5 +1,5 @@
/*
* $Id: connectionHTTP.h,v 1.6.2.1 2010/06/11 06:06:02 schmirl Exp $
* $Id: connectionHTTP.h,v 1.7 2010/07/19 13:49:31 schmirl Exp $
*/
#ifndef VDR_STREAMDEV_SERVERS_CONNECTIONHTTP_H

View File

@@ -1,5 +1,5 @@
/*
* $Id: connectionIGMP.c,v 1.1.4.1 2010/06/11 06:06:02 schmirl Exp $
* $Id: connectionIGMP.c,v 1.2 2010/07/19 13:49:31 schmirl Exp $
*/
#include <ctype.h>

View File

@@ -1,5 +1,5 @@
/*
* $Id: connectionVTP.c,v 1.27.2.1 2010/06/11 06:06:03 schmirl Exp $
* $Id: connectionVTP.c,v 1.28 2010/07/19 13:49:31 schmirl Exp $
*/
#include "server/connectionVTP.h"

View File

@@ -1,5 +1,5 @@
/*
* $Id: setup.c,v 1.9.2.2 2010/06/18 19:07:32 schmirl Exp $
* $Id: setup.c,v 1.10 2010/07/19 13:49:31 schmirl Exp $
*/
#include <vdr/menuitems.h>

View File

@@ -1,5 +1,5 @@
/*
* $Id: setup.h,v 1.3.2.1 2010/06/18 19:07:32 schmirl Exp $
* $Id: setup.h,v 1.4 2010/07/19 13:49:31 schmirl Exp $
*/
#ifndef VDR_STREAMDEV_SETUPSERVER_H

View File

@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
* $Id: streamdev-server.c,v 1.1.2.1 2010/06/14 10:40:20 schmirl Exp $
* $Id: streamdev-server.c,v 1.2 2010/07/19 13:49:32 schmirl Exp $
*/
#include <getopt.h>

View File

@@ -1,5 +1,5 @@
/*
* $Id: streamdev-server.h,v 1.1.2.1 2010/06/14 10:40:20 schmirl Exp $
* $Id: streamdev-server.h,v 1.2 2010/07/19 13:49:32 schmirl Exp $
*/
#ifndef VDR_STREAMDEVSERVER_H

View File

@@ -1,5 +1,5 @@
/*
* $Id: streamer.c,v 1.19.2.1 2010/06/11 06:06:03 schmirl Exp $
* $Id: streamer.c,v 1.20 2010/07/19 13:49:32 schmirl Exp $
*/
#include <vdr/ringbuffer.h>

View File

@@ -1,5 +1,5 @@
/*
* $Id: streamer.h,v 1.11.2.1 2010/06/11 06:06:03 schmirl Exp $
* $Id: streamer.h,v 1.12 2010/07/19 13:49:32 schmirl Exp $
*/
#ifndef VDR_STREAMDEV_STREAMER_H