diff options
author | Benjamin Otte <otte@gnome.org> | 2002-04-06 18:14:31 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2002-04-06 18:14:31 +0000 |
commit | 8a62726a379f8ee035a2e61bf7f503f0aca387cd (patch) | |
tree | a8355daaf2e7ca454235000138a77b177dadb4b4 /ext/hermes | |
parent | f921acd1a638b5e2027af8fa3921948b8214ef5e (diff) | |
download | gst-plugins-bad-8a62726a379f8ee035a2e61bf7f503f0aca387cd.tar.gz gst-plugins-bad-8a62726a379f8ee035a2e61bf7f503f0aca387cd.tar.bz2 gst-plugins-bad-8a62726a379f8ee035a2e61bf7f503f0aca387cd.zip |
fixed warnings in /ext added mikmod_types.h to get it done
Original commit message from CVS:
fixed warnings in /ext
added mikmod_types.h to get it done
Diffstat (limited to 'ext/hermes')
-rw-r--r-- | ext/hermes/yuv2rgb.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ext/hermes/yuv2rgb.c b/ext/hermes/yuv2rgb.c index b1fb0008..ec922d89 100644 --- a/ext/hermes/yuv2rgb.c +++ b/ext/hermes/yuv2rgb.c @@ -276,19 +276,6 @@ unsigned long a; } /* - * Shift the 0s in the least significant end out of the longword. - * Low performance, do not call often. - */ -static unsigned long -shifted_down(a) -unsigned long a; -{ - if(!a) return 0; - if(a & 1) return a; - return a >> 1; -} - -/* * How many 0 bits are there at most significant end of longword. * Low performance, do not call often. */ |