- Timestamp:
- 02/27/09 18:00:28 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderVideo.cpp
r9818 r9826 73 73 74 74 // Allocate video frame 75 m_frame.reset(avcodec_alloc_frame() , av_free);75 m_frame.reset(avcodec_alloc_frame()); 76 76 77 77 // Allocate converted RGB frame 78 m_frame_rgba.reset(avcodec_alloc_frame() , av_free);78 m_frame_rgba.reset(avcodec_alloc_frame()); 79 79 m_buffer_rgba.resize(avpicture_get_size(PIX_FMT_RGB32, width(), height())); 80 80 m_buffer_rgba_public.resize(m_buffer_rgba.size());
