Browse Source

Snow : use non-NULL context for av_log.

Originally committed as revision 21089 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Jai Menon 15 years ago
parent
commit
2da16f288a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/snow.c

+ 2
- 2
libavcodec/snow.c View File

@@ -4016,7 +4016,7 @@ static void iterative_me(SnowContext *s){
}
}
}
av_log(NULL, AV_LOG_ERROR, "pass:%d changed:%d\n", pass, change);
av_log(s->avctx, AV_LOG_ERROR, "pass:%d changed:%d\n", pass, change);
if(!change)
break;
}
@@ -4058,7 +4058,7 @@ static void iterative_me(SnowContext *s){
change++;
}
}
av_log(NULL, AV_LOG_ERROR, "pass:4mv changed:%d\n", change*4);
av_log(s->avctx, AV_LOG_ERROR, "pass:4mv changed:%d\n", change*4);
}
}



Loading…
Cancel
Save