]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/mmvideo.c
DCA: use a local variable for loop boundary
[ffmpeg] / libavcodec / mmvideo.c
index 596ca7aec47b0fb8067384f5bc992c4c7a2e2836..6d9aaacbe6b4b3c5c1053ae684c64492c235ac19 100644 (file)
@@ -22,7 +22,7 @@
 /**
  * @file libavcodec/mmvideo.c
  * American Laser Games MM Video Decoder
- * by Peter Ross (suxen_drol at hotmail dot com)
+ * by Peter Ross (pross@xvid.org)
  *
  * The MM format was used by IBM-PC ports of ALG's "arcade shooter" games,
  * including Mad Dog McCree and Crime Patrol.
@@ -60,7 +60,7 @@ static av_cold int mm_decode_init(AVCodecContext *avctx)
 
     s->frame.reference = 1;
     if (avctx->get_buffer(avctx, &s->frame)) {
-        av_log(s->avctx, AV_LOG_ERROR, "mmvideo: get_buffer() failed\n");
+        av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
         return -1;
     }
 
@@ -200,7 +200,7 @@ static av_cold int mm_decode_end(AVCodecContext *avctx)
 
 AVCodec mmvideo_decoder = {
     "mmvideo",
-    CODEC_TYPE_VIDEO,
+    AVMEDIA_TYPE_VIDEO,
     CODEC_ID_MMVIDEO,
     sizeof(MmContext),
     mm_decode_init,