Changeset 11177
- Timestamp:
- 03/08/10 11:20:14 (3 years ago)
- Location:
- OpenSceneGraph/trunk/src/osgPlugins/ffmpeg
- Files:
-
- 2 modified
-
FFmpegDecoderAudio.cpp (modified) (1 diff)
-
FFmpegDecoderVideo.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderAudio.cpp
r11165 r11177 17 17 const uint8_t *buf, int buf_size) 18 18 { 19 #if LIBAVCODEC_VERSION_MAJOR >= 5 219 #if LIBAVCODEC_VERSION_MAJOR >= 53 || (LIBAVCODEC_VERSION_MAJOR==52 && LIBAVCODEC_VERSION_MINOR>=32) 20 20 21 21 // following code segment copied from ffmpeg's avcodec_decode_audio2() -
OpenSceneGraph/trunk/src/osgPlugins/ffmpeg/FFmpegDecoderVideo.cpp
r11165 r11177 13 13 const uint8_t *buf, int buf_size) 14 14 { 15 #if LIBAVCODEC_VERSION_MAJOR >= 5 215 #if LIBAVCODEC_VERSION_MAJOR >= 53 || (LIBAVCODEC_VERSION_MAJOR==52 && LIBAVCODEC_VERSION_MINOR>=32) 16 16 // following code segment copied from ffmpeg avcodec_decode_video() implementation 17 17 // to avoid warnings about deprecated function usage.
