# HG changeset patch # User reimar # Date 1269027842 0 # Node ID 200a76c94ad157fa18415b2f9b2a72f063ebb26a # Parent 3d4e6c8c08ac6fc18ab57ae9d37a0face57274ba Remove unnecessary size limits and a related define for hm12 decoder. Patch by Stephen Warren [swarren nvidia com] diff -r 3d4e6c8c08ac -r 200a76c94ad1 libmpcodecs/vd_hmblck.c --- a/libmpcodecs/vd_hmblck.c Fri Mar 19 19:42:23 2010 +0000 +++ b/libmpcodecs/vd_hmblck.c Fri Mar 19 19:44:02 2010 +0000 @@ -24,8 +24,6 @@ #include "vd_internal.h" -#define TEMP_BUF_SIZE (720*576) - static const vd_info_t info = { "Hauppauge Macroblock/NV12/NV21 Decoder", "hmblck", @@ -92,11 +90,6 @@ "hmblck: Image size inconsistent with data size.\n"); return 0; } - if ( (mpi->width > 720) || (mpi->height > 576) ) { - mp_msg(MSGT_DECVIDEO,MSGL_ERR, - "hmblck: Image size is too big.\n"); - return 0; - } if (mpi->num_planes != 3) { mp_msg(MSGT_DECVIDEO,MSGL_ERR, "hmblck: Incorrect number of image planes.\n");