On Wed, 31 Dec 2008 22:21:47 -0500, Ash <[email protected]> wrote: >> Just to be sure there isn't confusion... if you compile ffmpeg without >> libswscale, and then use swscale functions anyway, they will use an >> older implementation that used to be "img_convert". This implmentation >> works fine for most common conversions. > I am trying to do RGB16/24 to YUV conversion. I thought if i used any > swscale functions without compiling with libswscale, then I will get > some linking errors? If not can you tell me which functions to use to do > the above conversions?
There won't be a linker error because the linker will find them in libavcodec/imgresample.c But those aren't the official sws_scale functions, just the old code rearranged to match the new API. -- Michael Conrad IntelliTree Solutions llc. 513-552-6362 [email protected] _______________________________________________ libav-user mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/libav-user
