Code in the wrong function.

This commit is contained in:
Moritz Bunkus 2008-09-21 08:01:08 +00:00
parent b5b15511f0
commit be79f31908

View File

@ -43,6 +43,10 @@ vc1::frame_t::frame_t()
, contains_sequence_header(false)
, contains_field(false)
{
}
void
vc1::frame_t::init() {
header.init();
data = memory_cptr(NULL);
timecode = -1;
@ -51,11 +55,6 @@ vc1::frame_t::frame_t()
contains_field = false;
}
void
vc1::frame_t::init() {
}
bool
vc1::parse_sequence_header(const unsigned char *buf,
int size,