Commit 08925330 authored by kalistratovag's avatar kalistratovag

mjpec_decoder initialize m_movi_start variable

parent 7dd19f6d
...@@ -344,7 +344,7 @@ class AviMjpegStream ...@@ -344,7 +344,7 @@ class AviMjpegStream
{ {
public: public:
AviMjpegStream(); 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); bool parseAvi(MjpegInputStream& in_str);
//stores founded frames in in_frame_list. getFrames() would return empty list //stores founded frames in in_frame_list. getFrames() would return empty list
bool parseAvi(MjpegInputStream& in_str, frame_list& in_frame_list); bool parseAvi(MjpegInputStream& in_str, frame_list& in_frame_list);
...@@ -377,7 +377,7 @@ protected: ...@@ -377,7 +377,7 @@ protected:
bool m_is_indx_present; 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)
{ {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment