On Tue, Jul 24, 2012 at 06:36:06AM +0200, Kostya Shishkov wrote: > On Mon, Jul 23, 2012 at 06:45:17PM -0400, Derek Buitenhuis wrote: > > From: Carl Eugen Hoyos <[email protected]> > > > > Signed-off-by: Derek Buitenhuis <[email protected]> > > --- > > libavcodec/v410dec.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/libavcodec/v410dec.c b/libavcodec/v410dec.c > > index d7660ee..93545ab 100644 > > --- a/libavcodec/v410dec.c > > +++ b/libavcodec/v410dec.c > > @@ -30,10 +30,10 @@ static av_cold int v410_decode_init(AVCodecContext > > *avctx) > > > > if (avctx->width & 1) { > > if (avctx->err_recognition & AV_EF_EXPLODE) { > > - av_log(avctx, AV_LOG_ERROR, "v410 requires width to be even, > > continuing anyway.\n"); > > + av_log(avctx, AV_LOG_ERROR, "v410 requires width to be > > even.\n"); > > return AVERROR_INVALIDDATA; > > You're lying here. > > > } else { > > - av_log(avctx, AV_LOG_WARNING, "v410 requires width to be > > even.\n"); > > + av_log(avctx, AV_LOG_WARNING, "v410 requires width to be even, > > continuing anyway.\n"); > > } > > } > > > > --
Sorry, I've understood patch in reverse direction. It was not a good idea to comment while not being fully awake. _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
