ffmpeg.c: In function `set_parameter_video': ffmpeg.c:85: structure has no member named `quality' ffmpeg.c:157: structure has no member named `aspect_ratio_info' ... make: *** [ffmpeg.lo] Error 1
The problem seems to be that the ffmpeg code (NOT the ffmpeg package) that is included with libquicktime is using an "AVCodecContext" struct from libavcodec; however it is trying to access members named "aspect_ratio_info" and "quality" in this struct that do not exist, so maybe it is a versioning problem.
Another issue might be that in the included ffmpeg.h, there is the line
#include "quicktime/quicktime.h"
I wonder if this is causing problems since I am using HFS+ and so this is seen as equivalent to
#include "QuickTime/QuickTime.h"
(i.e. it is including the system QuickTime framework rather than the file it really wants).
Does anyone have any ideas on how to get this to compile?
I am using fink 0.14.2 (unstable branch, latest rsync update as of Oct. 12). I have libavcodec1-{dev|shlibs} installed, version 0.4.6-1. The machine is a dual 1GHz "MDD" running 10.2.8, gcc_select is set to 3.1 (latest 3.3 update is installed however). All fink packages have been compiled with gcc 3.1.
TIA, -Chad
------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ Fink-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-users
