diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | liboutput/encode.c | 6 |
2 files changed, 9 insertions, 0 deletions
@@ -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; } |