From 451cf796a910175ebf75e83c67d1fe292d69b9dd Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Thu, 24 Feb 2005 07:49:13 +0000 Subject: [PATCH] Doh... forgot to remove the debug code before the commit. (Recommit because I f'cked the SVN database) --- src/output/p_video.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/output/p_video.cpp b/src/output/p_video.cpp index 06292cf97..3d8e900fe 100644 --- a/src/output/p_video.cpp +++ b/src/output/p_video.cpp @@ -337,18 +337,9 @@ mpeg4_p2_video_packetizer_c::process(memory_c &mem, int64_t duration, int64_t bref, int64_t fref) { - vector frames; - vector::const_iterator frame; - if (!aspect_ratio_extracted) extract_aspect_ratio(mem.data, mem.size); - mpeg4_p2_find_frame_types(mem.data, mem.size, frames); - foreach(frame, frames) { - csum += frame->type + frame->size; - mxinfo("\nFRAME: type %c size %d\n", frame->type, frame->size); - } - if (input_is_native == output_is_native) return video_packetizer_c::process(mem, old_timecode, duration, bref, fref);