1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-26 17:12:36 +00:00

Remove unnecessary size limits and a related define for hm12 decoder.

Patch by Stephen Warren [swarren nvidia com]


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30940 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2010-03-19 19:44:02 +00:00
parent 498bd63ccc
commit 443a427b0e

View File

@ -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 *data, int len, mp_image_t* mpi, int swapp
"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");