# HG changeset patch # User reimar # Date 1173604571 0 # Node ID cd5964d440e87f8e9f1d668e0c69a6c279f41ca7 # Parent 056127e5df897401b0d493a3ed3d155e2e0ff8d5 Check dimensions to avoid division by zero due to invalid new dimensions. Partially fixes http://bugzilla.mplayerhq.hu/show_bug.cgi?id=773. diff -r 056127e5df89 -r cd5964d440e8 rv10.c --- a/rv10.c Sun Mar 11 02:13:05 2007 +0000 +++ b/rv10.c Sun Mar 11 09:16:11 2007 +0000 @@ -454,6 +454,8 @@ } if(new_w != s->width || new_h != s->height){ av_log(s->avctx, AV_LOG_DEBUG, "attempting to change resolution to %dx%d\n", new_w, new_h); + if (avcodec_check_dimensions(s->avctx, new_h, new_w) < 0) + return -1; MPV_common_end(s); s->width = s->avctx->width = new_w; s->height = s->avctx->height= new_h;