[Ffmpeg-cvslog] r8666 - trunk/libavcodec/bethsoftvideo.c

michael subversion
Sun Apr 8 01:17:06 CEST 2007


Author: michael
Date: Sun Apr  8 01:17:06 2007
New Revision: 8666

Modified:
   trunk/libavcodec/bethsoftvideo.c

Log:
remove useless debuging av_log()


Modified: trunk/libavcodec/bethsoftvideo.c
==============================================================================
--- trunk/libavcodec/bethsoftvideo.c	(original)
+++ trunk/libavcodec/bethsoftvideo.c	Sun Apr  8 01:17:06 2007
@@ -43,7 +43,6 @@ static int bethsoftvid_decode_init(AVCod
     vid->frame.buffer_hints = FF_BUFFER_HINTS_VALID |
         FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
     avctx->pix_fmt = PIX_FMT_PAL8;    // palette in vid->frame.data[1]
-    av_log(avctx, AV_LOG_DEBUG, "[bethsoftvid video decoder] init\n");
     return 0;
 }
 
@@ -70,8 +69,6 @@ static int bethsoftvid_decode_frame(AVCo
     uint8_t rle_num_bytes;
     int yoffset;
 
-    av_log(avctx, AV_LOG_DEBUG, "[bethsoftvid video decoder] decoding frame\n");
-
     // reget buffer will copy old data, good for simple difference frames
     if (avctx->reget_buffer(avctx, &vid->frame)) {
         av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
@@ -127,7 +124,6 @@ static int bethsoftvid_decode_frame(AVCo
 static int bethsoftvid_decode_end(AVCodecContext *avctx)
 {
     BethsoftvidContext * vid = avctx->priv_data;
-    av_log(avctx, AV_LOG_DEBUG, "[bethsoftvid video decoder] closing\n");
     if(vid->frame.data[0])
         avctx->release_buffer(avctx, &vid->frame);
     return 0;




More information about the ffmpeg-cvslog mailing list