mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 05:29:54 +08:00
mjpec_decoder initialize m_movi_start variable
This commit is contained in:
parent
7dd19f6d97
commit
08925330e0
@ -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:
|
|||||||
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)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user