On 07/20/2012 04:36 PM, Jeremy Graham wrote:
Thanks for responding, Alberto. I updated ffmpeg using the information from the Ubuntu Compilation Guide at the ffmpeg website and attempted the compilation and install with a fresh start. It still gave me the same error upon halting. Would you happen to have any other ideas or suggestions? I've included more information about the error this time.
The errors about UINT64_C should be fixed by defining __STDC_CONSTANT_MACROS on your compile line. Try adding -D__STDC_CONSTANT_MACROS to your CMAKE_CXX_FLAGS.
The other errors just look like a missing #include (not sure which one). Somehow, even though you're including ctime, the clock_t, and time_t types aren't getting defined.
The rest of them are just warnings about using a deprecated ffmpeg API. The avcodec_decode_audio3 function has been replaced by avcodec_decode_audio4 (the new API supports planar audio formats), and the avcodec_open function was replace by avcodec_open2 (which allows codec options to be specified).
--"J" _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

