pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/squeak-vm Only return without value, if the funct...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/73aa33253655
branches:  trunk
changeset: 610200:73aa33253655
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Sat Oct 20 22:12:30 2012 +0000

description:
Only return without value, if the function is void.

diffstat:

 lang/squeak-vm/distinfo                                                           |   5 +-
 lang/squeak-vm/patches/patch-Cross_plugins_Mpeg3Plugin_libmpeg_audio_layer3.c     |  13 ++
 lang/squeak-vm/patches/patch-Cross_plugins_Mpeg3Plugin_libmpeg_video_getpicture.c |  49 ++++++++++
 lang/squeak-vm/patches/patch-Cross_plugins_Mpeg3Plugin_libmpeg_video_idct.c       |  22 ++++
 4 files changed, 88 insertions(+), 1 deletions(-)

diffs (112 lines):

diff -r 76e5b7da4670 -r 73aa33253655 lang/squeak-vm/distinfo
--- a/lang/squeak-vm/distinfo   Sat Oct 20 22:11:30 2012 +0000
+++ b/lang/squeak-vm/distinfo   Sat Oct 20 22:12:30 2012 +0000
@@ -1,8 +1,11 @@
-$NetBSD: distinfo,v 1.4 2011/12/19 11:26:59 obache Exp $
+$NetBSD: distinfo,v 1.5 2012/10/20 22:12:30 joerg Exp $
 
 SHA1 (squeak/Squeak-3.11.3.2135-src.tar.gz) = cdc033b14e56ea05aa62bcb1686bb73f4347e29f
 RMD160 (squeak/Squeak-3.11.3.2135-src.tar.gz) = abb7dbde7e79f18161842d1451959ad09e7ef3ad
 Size (squeak/Squeak-3.11.3.2135-src.tar.gz) = 3585556 bytes
+SHA1 (patch-Cross_plugins_Mpeg3Plugin_libmpeg_audio_layer3.c) = 81539b093c78f88747da97f18f56f38223117a39
+SHA1 (patch-Cross_plugins_Mpeg3Plugin_libmpeg_video_getpicture.c) = 19f0eabfcdc983d5e7c09db9081d0a01fe333798
+SHA1 (patch-Cross_plugins_Mpeg3Plugin_libmpeg_video_idct.c) = 2509f50f51671943df8b989e89a21408b08dbdc9
 SHA1 (patch-aa) = dfdb3be82288e8bd7658832e8dd91d242d2b97b2
 SHA1 (patch-ab) = 019a6b1bc50e3abc500902a45edcd960b7708bf2
 SHA1 (patch-ac) = bad06ae257766407c90a62f5927a53c97ee8072a
diff -r 76e5b7da4670 -r 73aa33253655 lang/squeak-vm/patches/patch-Cross_plugins_Mpeg3Plugin_libmpeg_audio_layer3.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/lang/squeak-vm/patches/patch-Cross_plugins_Mpeg3Plugin_libmpeg_audio_layer3.c     Sat Oct 20 22:12:30 2012 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-Cross_plugins_Mpeg3Plugin_libmpeg_audio_layer3.c,v 1.1 2012/10/20 22:12:30 joerg Exp $
+
+--- Cross/plugins/Mpeg3Plugin/libmpeg/audio/layer3.c.orig      2012-10-20 13:51:52.000000000 +0000
++++ Cross/plugins/Mpeg3Plugin/libmpeg/audio/layer3.c
+@@ -884,7 +884,7 @@ int mpeg3audio_III_antialias(mpeg3audio_
+       if(gr_info->block_type == 2) 
+       {
+       if(!gr_info->mixed_block_flag) 
+-              return;
++              return 0;
+       sblim = 1; 
+       }
+       else 
diff -r 76e5b7da4670 -r 73aa33253655 lang/squeak-vm/patches/patch-Cross_plugins_Mpeg3Plugin_libmpeg_video_getpicture.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/lang/squeak-vm/patches/patch-Cross_plugins_Mpeg3Plugin_libmpeg_video_getpicture.c Sat Oct 20 22:12:30 2012 +0000
@@ -0,0 +1,49 @@
+$NetBSD: patch-Cross_plugins_Mpeg3Plugin_libmpeg_video_getpicture.c,v 1.1 2012/10/20 22:12:30 joerg Exp $
+
+--- Cross/plugins/Mpeg3Plugin/libmpeg/video/getpicture.c.orig  2012-10-20 13:52:22.000000000 +0000
++++ Cross/plugins/Mpeg3Plugin/libmpeg/video/getpicture.c
+@@ -205,7 +205,7 @@ int mpeg3video_getintrablock(mpeg3_slice
+               {
+ /*                    fprintf(stderr, "mpeg3video_getintrablock: invalid Huffman code\n"); */
+               slice->fault = 1;
+-              return;
++              return 1;
+       }
+ 
+       mpeg3slice_flushbits(slice_buffer, tab->len);
+@@ -240,7 +240,7 @@ int mpeg3video_getintrablock(mpeg3_slice
+               else
+               {
+               slice->fault = 1;
+-              return;
++              return 1;
+               }
+                       
+ 
+@@ -397,7 +397,7 @@ int mpeg3video_getmpg2intrablock(mpeg3_s
+       else                  
+               val = (dc_dct_pred[2] += mpeg3video_getdcchrom(slice_buffer));
+ 
+-      if(slice->fault) return;
++      if(slice->fault) return 1;
+ #ifdef HAVE_MMX
+       if(video->have_mmx)
+               bp[0] = val << (7 - video->dc_prec);
+@@ -463,7 +463,7 @@ int mpeg3video_getmpg2intrablock(mpeg3_s
+                       {
+ // invalid signed_level (escape)
+                       slice->fault = 1;
+-                      return;
++                      return 1;
+               }
+               if((sign = (val >= 2048)) != 0) val = 4096 - val;
+       }
+@@ -545,7 +545,7 @@ int mpeg3video_getmpg2interblock(mpeg3_s
+               {
+ // invalid Huffman code
+               slice->fault = 1;
+-              return;
++              return 1;
+       }
+ 
+       mpeg3slice_flushbits(slice_buffer, tab->len);
diff -r 76e5b7da4670 -r 73aa33253655 lang/squeak-vm/patches/patch-Cross_plugins_Mpeg3Plugin_libmpeg_video_idct.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/lang/squeak-vm/patches/patch-Cross_plugins_Mpeg3Plugin_libmpeg_video_idct.c       Sat Oct 20 22:12:30 2012 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-Cross_plugins_Mpeg3Plugin_libmpeg_video_idct.c,v 1.1 2012/10/20 22:12:30 joerg Exp $
+
+--- Cross/plugins/Mpeg3Plugin/libmpeg/video/idct.c.orig        2012-10-20 13:53:28.000000000 +0000
++++ Cross/plugins/Mpeg3Plugin/libmpeg/video/idct.c
+@@ -70,7 +70,7 @@
+ 
+  
+ inline 
+-int mpeg3video_idctrow(short *blk)
++void mpeg3video_idctrow(short *blk)
+ {
+       int x0, x1, x2, x3, x4, x5, x6, x7, x8;
+ 
+@@ -134,7 +134,7 @@ int mpeg3video_idctrow(short *blk)
+ 
+ 
+ inline
+-int mpeg3video_idctcol(short *blk)
++void mpeg3video_idctcol(short *blk)
+ {
+   int x0, x1, x2, x3, x4, x5, x6, x7, x8;
+ 



Home | Main Index | Thread Index | Old Index