mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gst/goom/: As hinted in Bug #518213, revert one change and fix warnings properly.
Original commit message from CVS: * gst/goom/convolve_fx.c: * gst/goom/motif_goom1.h: * gst/goom/motif_goom2.h: As hinted in Bug #518213, revert one change and fix warnings properly. This fixes both #518213 and #520073 for me.
This commit is contained in:
parent
0db4cb524f
commit
debe1baad8
4 changed files with 525 additions and 524 deletions
|
@ -1,3 +1,11 @@
|
|||
2008-04-09 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/goom/convolve_fx.c:
|
||||
* gst/goom/motif_goom1.h:
|
||||
* gst/goom/motif_goom2.h:
|
||||
As hinted in Bug #518213, revert one change and fix warnings properly.
|
||||
This fixes both #518213 and #520073 for me.
|
||||
|
||||
2008-04-09 Jan Schmidt <Jan.Schmidt@sun.com>
|
||||
|
||||
* gst/matroska/ebml-read.c: (gst_ebml_read_seek):
|
||||
|
|
|
@ -15,10 +15,8 @@
|
|||
|
||||
typedef char Motif[CONV_MOTIF_W][CONV_MOTIF_W];
|
||||
|
||||
#if 0
|
||||
#include "motif_goom1.h"
|
||||
#include "motif_goom2.h"
|
||||
#endif
|
||||
|
||||
#define NB_THETA 512
|
||||
|
||||
|
@ -69,7 +67,6 @@ compute_tables (VisualFX * _this, PluginInfo * info)
|
|||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void
|
||||
set_motif (ConvData * data, Motif motif)
|
||||
{
|
||||
|
@ -80,7 +77,7 @@ set_motif (ConvData * data, Motif motif)
|
|||
data->conv_motif[i][j] =
|
||||
motif[CONV_MOTIF_W - i - 1][CONV_MOTIF_W - j - 1];
|
||||
}
|
||||
#endif
|
||||
|
||||
static void
|
||||
convolve_init (VisualFX * _this, PluginInfo * info)
|
||||
{
|
||||
|
@ -113,9 +110,7 @@ convolve_init (VisualFX * _this, PluginInfo * info)
|
|||
data->theta = 0;
|
||||
data->ftheta = 0.0;
|
||||
data->visibility = 1.0;
|
||||
#if 0
|
||||
set_motif (data, CONV_MOTIF2);
|
||||
#endif
|
||||
data->inverse_motif = 0;
|
||||
|
||||
_this->params = &data->params;
|
||||
|
@ -214,12 +209,11 @@ create_output_with_brightness (VisualFX * _this, Pixel * src, Pixel * dest,
|
|||
xtex += c;
|
||||
ytex -= s;
|
||||
|
||||
iff2 = 0;
|
||||
#if 0
|
||||
ifftab[data->
|
||||
iff2 =
|
||||
ifftab[(int) data->
|
||||
conv_motif[(ytex >> 16) & CONV_MOTIF_WMASK][(xtex >> 16) &
|
||||
CONV_MOTIF_WMASK]];
|
||||
#endif
|
||||
|
||||
#define sat(a) ((a)>0xFF?0xFF:(a))
|
||||
f0 = src[i].val;
|
||||
f1 = ((f0 >> R_OFFSET) & 0xFF) * iff2 >> 8;
|
||||
|
@ -299,7 +293,6 @@ convolve_apply (VisualFX * _this, Pixel * src, Pixel * dest, PluginInfo * info)
|
|||
data->factor_p.change_listener (&data->factor_p);
|
||||
}
|
||||
|
||||
#if 0
|
||||
if (data->visibility < 0.01) {
|
||||
switch (goom_irand (info->gRandom, 300)) {
|
||||
case 1:
|
||||
|
@ -312,7 +305,7 @@ convolve_apply (VisualFX * _this, Pixel * src, Pixel * dest, PluginInfo * info)
|
|||
break;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
if ((ff > 0.98f) && (ff < 1.02f))
|
||||
memcpy (dest, src, info->screen.size * sizeof (Pixel));
|
||||
else
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue