Remove unintentional printfs

Review URL: http://webrtc-codereview.appspot.com/131018

git-svn-id: http://webrtc.googlecode.com/svn/trunk@563 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
stefan@webrtc.org 2011-09-08 13:16:24 +00:00
parent 167328eab6
commit 06e2c11703

View File

@ -22,7 +22,6 @@
#include "vpx/vp8cx.h"
#include "vpx/vp8dx.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
@ -705,7 +704,6 @@ VP8Decoder::~VP8Decoder()
WebRtc_Word32
VP8Decoder::Reset()
{
printf("Reset decoder\n");
if (!_inited)
{
return WEBRTC_VIDEO_CODEC_UNINITIALIZED;
@ -727,7 +725,6 @@ WebRtc_Word32
VP8Decoder::InitDecode(const VideoCodec* inst,
WebRtc_Word32 numberOfCores)
{
printf("Init decoder\n");
vp8_postproc_cfg_t ppcfg;
WebRtc_Word32 retVal = Release();
if (retVal < 0 )
@ -1013,7 +1010,6 @@ VP8Decoder::RegisterDecodeCompleteCallback(DecodedImageCallback* callback)
WebRtc_Word32
VP8Decoder::Release()
{
printf("Release decoder\n");
if (_decodedImage._buffer != NULL)
{
delete [] _decodedImage._buffer;