summaryrefslogtreecommitdiff
path: root/contrib/vdr2jpeg/ffm.h
diff options
context:
space:
mode:
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();
- }
-};