mjpec_decoder initialize m_movi_start variable
authorkalistratovag <alexander.kalistratov@itseez.com>
Wed, 22 Apr 2015 16:49:11 +0000 (19:49 +0300)
committerkalistratovag <alexander.kalistratov@itseez.com>
Wed, 22 Apr 2015 16:49:11 +0000 (19:49 +0300)
modules/videoio/src/cap_mjpeg_decoder.cpp

index c6eb8f0..53557fa 100644 (file)
@@ -344,7 +344,7 @@ class AviMjpegStream
 {
 public:
     AviMjpegStream();
-    //stores founded frames in m_frame_list which be accessed via getFrames
+    //stores founded frames in m_frame_list which can be accessed via getFrames
     bool parseAvi(MjpegInputStream& in_str);
     //stores founded frames in in_frame_list. getFrames() would return empty list
     bool parseAvi(MjpegInputStream& in_str, frame_list& in_frame_list);
@@ -377,7 +377,7 @@ protected:
     bool       m_is_indx_present;
 };
 
-AviMjpegStream::AviMjpegStream(): m_stream_id(0), m_movi_end(0), m_width(0), m_height(0), m_fps(0), m_is_indx_present(false)
+AviMjpegStream::AviMjpegStream(): m_stream_id(0), m_movi_start(0), m_movi_end(0), m_width(0), m_height(0), m_fps(0), m_is_indx_present(false)
 {
 }