diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-06-02 13:57:41 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-06-02 13:57:41 +0200 |
commit | 78e11d8c6feab964586e11e9396b3b868c086343 (patch) | |
tree | 97459243aa13bd182529d6cc6aaf85be622a1a13 /cutter.c | |
parent | ebf8a285b21b168be6e9853b8178d2352e58acc1 (diff) | |
download | vdr-78e11d8c6feab964586e11e9396b3b868c086343.tar.gz vdr-78e11d8c6feab964586e11e9396b3b868c086343.tar.bz2 |
Extended the interface to the script that gets called for recordings, so that in the "edited" case it also provides the name of the original recording
Diffstat (limited to 'cutter.c')
-rw-r--r-- | cutter.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: cutter.c 2.11 2012/02/16 12:08:39 kls Exp $ + * $Id: cutter.c 2.12 2012/06/02 13:46:55 kls Exp $ */ #include "cutter.h" @@ -270,7 +270,7 @@ bool cCutter::Active(const char *FileName) error = cuttingThread->Error(); Stop(); if (!error) - cRecordingUserCommand::InvokeCommand(RUC_EDITEDRECORDING, editedVersionName); + cRecordingUserCommand::InvokeCommand(RUC_EDITEDRECORDING, editedVersionName, originalVersionName); originalVersionName = NULL; editedVersionName = NULL; ended = true; |