From be79f31908ac8fe8391f1b1edb813791f9ced61e Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sun, 21 Sep 2008 08:01:08 +0000 Subject: [PATCH] Code in the wrong function. --- src/common/vc1_common.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/common/vc1_common.cpp b/src/common/vc1_common.cpp index 434a220f7..672eb7082 100644 --- a/src/common/vc1_common.cpp +++ b/src/common/vc1_common.cpp @@ -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,