// avcodec_sample.0.4.9.cpp // A small sample program that shows how to use libavformat and libavcodec to // read video from a file. // // This version is for the 0.4.9-pre1 release of ffmpeg. This release adds the // av_read_frame() API call, which simplifies the reading of video frames // considerably. // // Use // // g++ -o avcodec_sample.0.4.9 avcodec_sample.0.4.9.cpp -lavformat -lavcodec \ ..