[FFmpeg-cvslog] msmpeg4: Drop disabled debug cruft
Diego Biurrun
git at videolan.org
Sun Mar 19 17:07:07 EET 2017
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Sat Jul 30 15:30:46 2016 +0200| [f2f145f3032bc8808708a4bd694fbce5f1b8b63c] | committer: Diego Biurrun
msmpeg4: Drop disabled debug cruft
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f2f145f3032bc8808708a4bd694fbce5f1b8b63c
---
libavcodec/msmpeg4dec.c | 7 -------
libavcodec/msmpeg4enc.c | 5 -----
2 files changed, 12 deletions(-)
diff --git a/libavcodec/msmpeg4dec.c b/libavcodec/msmpeg4dec.c
index 06ae9be..a2d0ad4 100644
--- a/libavcodec/msmpeg4dec.c
+++ b/libavcodec/msmpeg4dec.c
@@ -407,13 +407,6 @@ int ff_msmpeg4_decode_picture_header(MpegEncContext * s)
av_log(s->avctx, AV_LOG_ERROR, "invalid picture type\n");
return -1;
}
-#if 0
-{
- static int had_i=0;
- if(s->pict_type == AV_PICTURE_TYPE_I) had_i=1;
- if(!had_i) return -1;
-}
-#endif
s->chroma_qscale= s->qscale = get_bits(&s->gb, 5);
if(s->qscale==0){
av_log(s->avctx, AV_LOG_ERROR, "invalid qscale\n");
diff --git a/libavcodec/msmpeg4enc.c b/libavcodec/msmpeg4enc.c
index 21e38f9..6d353e5 100644
--- a/libavcodec/msmpeg4enc.c
+++ b/libavcodec/msmpeg4enc.c
@@ -314,11 +314,6 @@ void ff_msmpeg4_encode_motion(MpegEncContext * s,
mx += 32;
my += 32;
-#if 0
- if ((unsigned)mx >= 64 ||
- (unsigned)my >= 64)
- av_log(s->avctx, AV_LOG_ERROR, "error mx=%d my=%d\n", mx, my);
-#endif
mv = &ff_mv_tables[s->mv_table_index];
code = mv->table_mv_index[(mx << 6) | my];
More information about the ffmpeg-cvslog
mailing list