summaryrefslogtreecommitdiffstats
path: root/xvid_vbr.c
diff options
context:
space:
mode:
authorreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-01 03:56:13 +0000
committerreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-01 03:56:13 +0000
commit5b4ec50d44c9a40a9cd1719521b2fd9a290d4347 (patch)
treead1aded3190ae33d01540f3f5145e0e0677ba98d /xvid_vbr.c
parenta01ba6cb74110540d16833a57b49ceaa754de11c (diff)
downloadmpv-5b4ec50d44c9a40a9cd1719521b2fd9a290d4347.tar.bz2
mpv-5b4ec50d44c9a40a9cd1719521b2fd9a290d4347.tar.xz
rm unnecesary void* casts - part 1
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18874 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'xvid_vbr.c')
-rw-r--r--xvid_vbr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xvid_vbr.c b/xvid_vbr.c
index e4beb6e8a9..d3a7388faa 100644
--- a/xvid_vbr.c
+++ b/xvid_vbr.c
@@ -704,7 +704,7 @@ static int vbr_init_2pass2(void *sstate)
/* Allocate memory space for the keyframe_location array */
if((state->keyframe_locations
- = (int*)malloc((state->nb_keyframes+1)*sizeof(int))) == NULL) {
+ = malloc((state->nb_keyframes+1)*sizeof(int))) == NULL) {
fclose(state->pass1_file);
state->pass1_file = NULL;
return(-1);