[MPlayer-cvslog] r30940 - trunk/libmpcodecs/vd_hmblck.c
reimar
subversion at mplayerhq.hu
Fri Mar 19 20:44:02 CET 2010
Author: reimar
Date: Fri Mar 19 20:44:02 2010
New Revision: 30940
Log:
Remove unnecessary size limits and a related define for hm12 decoder.
Patch by Stephen Warren [swarren nvidia com]
Modified:
trunk/libmpcodecs/vd_hmblck.c
Modified: trunk/libmpcodecs/vd_hmblck.c
==============================================================================
--- trunk/libmpcodecs/vd_hmblck.c Fri Mar 19 20:42:23 2010 (r30939)
+++ trunk/libmpcodecs/vd_hmblck.c Fri Mar 19 20:44:02 2010 (r30940)
@@ -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 @@ static int nv12_to_yv12(unsigned char *d
"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");
More information about the MPlayer-cvslog
mailing list