From 085f2c19dd06b8c80bbc39c0a86ed13c36d4ce8f Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 23 Jun 2009 11:33:59 +0000 Subject: [PATCH] Fixed warning --- src/osgPlugins/ffmpeg/FFmpegDecoder.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/ffmpeg/FFmpegDecoder.hpp b/src/osgPlugins/ffmpeg/FFmpegDecoder.hpp index f6c83e714..43bc9475a 100644 --- a/src/osgPlugins/ffmpeg/FFmpegDecoder.hpp +++ b/src/osgPlugins/ffmpeg/FFmpegDecoder.hpp @@ -103,8 +103,8 @@ protected: AVStream * m_audio_stream; AVStream * m_video_stream; - unsigned int m_audio_index; - unsigned int m_video_index; + int m_audio_index; + int m_video_index; FFmpegClocks m_clocks; FFmpegPacket m_pending_packet;