0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

Silence a gcc warning: "wrong type argument to increment".

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24763 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
zuxy 2007-10-11 09:47:03 +00:00
parent 3ec7b533fd
commit 1c6f85026a

View File

@ -1174,7 +1174,7 @@ static int set_create_struct(xvid_mplayer_module_t *mod)
// parse zones // parse zones
if (xvidenc_zones != NULL && doZones > 0) // do not apply zones in CQ, and first pass mode (xvid vfw doesn't allow them in those modes either) if (xvidenc_zones != NULL && doZones > 0) // do not apply zones in CQ, and first pass mode (xvid vfw doesn't allow them in those modes either)
{ {
void *p; char *p;
int i; int i;
p = xvidenc_zones; p = xvidenc_zones;
create->num_zones = 0; // set the number of zones back to zero, this overwrites the zone defined for CQ - desired because each zone has to be specified on the commandline even in cq mode create->num_zones = 0; // set the number of zones back to zero, this overwrites the zone defined for CQ - desired because each zone has to be specified on the commandline even in cq mode