summaryrefslogtreecommitdiff
path: root/contrib/vdr2jpeg/ffm.h
diff options
context:
space:
mode:
authoranbr <vdr07@deltab.de>2015-03-22 13:14:03 +0100
committeranbr <vdr07@deltab.de>2015-03-22 13:14:03 +0100
commit0a18da170fafebbbd02d2a74ad09725be370b6d1 (patch)
treecb3292bb1578ab17248bba67711d12c6d90873af /contrib/vdr2jpeg/ffm.h
parent7c9cab9e7d8c79fc3abdc5f8b1046af1abf462f3 (diff)
downloadxxv-0a18da170fafebbbd02d2a74ad09725be370b6d1.tar.gz
xxv-0a18da170fafebbbd02d2a74ad09725be370b6d1.tar.bz2
Using ffmpeg binary as system call
Diffstat (limited to 'contrib/vdr2jpeg/ffm.h')
-rw-r--r--contrib/vdr2jpeg/ffm.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/contrib/vdr2jpeg/ffm.h b/contrib/vdr2jpeg/ffm.h
index 21fab77..d0b5e6b 100644
--- a/contrib/vdr2jpeg/ffm.h
+++ b/contrib/vdr2jpeg/ffm.h
@@ -1,28 +1,13 @@
/*
* Simple program to grab images from VDR Recording
*
- * Copyright (c) 2005-2008 Andreas Brachold
+ * Copyright (c) 2015 Andreas Brachold
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
*/
-extern void ffm_initalize(void);
-extern void ffm_deinitalize(void);
-
extern bool decode(const char* szMPVfile,
const char* szTmpMask, int width, int height);
-
-// Helperclass for proper init/deinit ffmpeg
-struct ffminit
-{
- ffminit() {
- ffm_initalize();
- }
-
- virtual ~ffminit() {
- ffm_deinitalize();
- }
-};