1 /* GStreamer 2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu> 3 * 4 * EffecTV: 5 * Copyright (C) 2001 FUKUCHI Kentarou 6 * 7 * EffecTV is free software. This library is free software; 8 * you can redistribute it and/or 9 * modify it under the terms of the GNU Library General Public 10 * License as published by the Free Software Foundation; either 11 * version 2 of the License, or (at your option) any later version. 12 * 13 * This library is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 * Library General Public License for more details. 17 * 18 * You should have received a copy of the GNU Library General Public 19 * License along with this library; if not, write to the 20 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 21 * Boston, MA 02110-1301, USA. 22 */ 23 24 #include <gst/gst.h> 25 26 GST_ELEMENT_REGISTER_DECLARE (edgetv); 27 GST_ELEMENT_REGISTER_DECLARE (agingtv); 28 GST_ELEMENT_REGISTER_DECLARE (dicetv); 29 GST_ELEMENT_REGISTER_DECLARE (warptv); 30 GST_ELEMENT_REGISTER_DECLARE (shagadelictv); 31 GST_ELEMENT_REGISTER_DECLARE (vertigotv); 32 GST_ELEMENT_REGISTER_DECLARE (revtv); 33 GST_ELEMENT_REGISTER_DECLARE (quarktv); 34 GST_ELEMENT_REGISTER_DECLARE (optv); 35 GST_ELEMENT_REGISTER_DECLARE (radioactv); 36 GST_ELEMENT_REGISTER_DECLARE (streaktv); 37 GST_ELEMENT_REGISTER_DECLARE (rippletv); 38 39 static inline guint fastrand(void)40fastrand (void) 41 { 42 static guint fastrand_val; 43 44 return (fastrand_val = fastrand_val * 1103515245 + 12345); 45 } 46 47