media-pluins/vdr-xineliboutput-1.0.0-pre5 does not install all xine plugins. There are two plugins that are required for some functionality. First is xineplug_post_autocrop.so, that is required for "crop 4:3 letterbox to 16:9" to work. Second is xineplug_post_audiochannel.so, that takes only left or right stereo channel from audiostream. This is required for some dual-language broadcasts on certain news and sports channels. Here is the fix: @@ -77,7 +77,9 @@ insinto ${VDR_PLUGIN_DIR} doins *.so.${MY_PV} insinto /usr/$(get_libdir)/xine/plugins/${XINE_LIB_VERSION} doins xineplug_inp_xvdr.so + doins xineplug_post_audiochannel.so + doins xineplug_post_autocrop.so }
Perhaps we should check if doins xineplug*.so will work.
> Perhaps we should check if > doins xineplug*.so > will work. Should be OK. Typically xine post plugins are installed to separate sub-directory, so adding insinto /usr/$(get_libdir)/xine/plugins/${XINE_LIB_VERSION} doins xineplug_inp_xvdr.so + + insinto /usr/$(get_libdir)/xine/plugins/${XINE_LIB_VERSION}/post + doins xineplug_post_*.so might be even better (?)
Commited version similar to the one from Comment #2. Thanks for reporting.