summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY3
-rw-r--r--liboutput/encode.c6
2 files changed, 9 insertions, 0 deletions
diff --git a/HISTORY b/HISTORY
index 8575428..da30f01 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,6 +1,9 @@
VDR Plugin 'image' Revision History
-----------------------------------
+2006-01-13
+- revert changes from 2005-12-17, throw is failed with other plugins thats use ffmpeg
+
2006-01-12
- fix build failed without defined FFMDIR
- add exif support (required libexif)
diff --git a/liboutput/encode.c b/liboutput/encode.c
index 505d478..ac8e01d 100644
--- a/liboutput/encode.c
+++ b/liboutput/encode.c
@@ -62,7 +62,13 @@ cEncode::cEncode()
bool cEncode::Register()
{
avcodec_init();
+#if 0
+ // XXX to resolv: dosen't work with osdpip
register_avcodec(&mpeg2video_encoder);
+#else
+ avcodec_register_all();
+#endif
+
return true;
}