]> git.sesse.net Git - movit/log
movit
10 years agoUnbreak demo build (it was broken due to a typo).
Steinar H. Gunderson [Wed, 22 Jan 2014 20:04:44 +0000 (21:04 +0100)]
Unbreak demo build (it was broken due to a typo).

10 years agoSome tweaks to the libtool parts of the Makefile.
Steinar H. Gunderson [Wed, 22 Jan 2014 09:39:47 +0000 (10:39 +0100)]
Some tweaks to the libtool parts of the Makefile.

We don't need to build all the non-lib files (especially the unit tests)
using libtool, so save some CPU time there. Also, unbreak coverage builds.

10 years agoUse the libtool autoconf macros.
Steinar H. Gunderson [Wed, 22 Jan 2014 00:59:10 +0000 (01:59 +0100)]
Use the libtool autoconf macros.

10 years agoUse libtool for building libraries and binaries.
Steinar H. Gunderson [Wed, 22 Jan 2014 00:16:18 +0000 (01:16 +0100)]
Use libtool for building libraries and binaries.

This means we get a shared library built, which should make building
in MLT a lot easier.

Note that Movit still does not export a stable ABI! This is reflected
in that the version number is still 0.0.0 and does not change between
checkins.

10 years agoFix mis-feeing in the ResourcePool destructor.
Steinar H. Gunderson [Tue, 21 Jan 2014 22:58:11 +0000 (23:58 +0100)]
Fix mis-feeing in the ResourcePool destructor.

10 years agoMake FlatInput and YCbCrInput release the texture to the pool on invalidate_pixel_data().
Steinar H. Gunderson [Tue, 21 Jan 2014 22:09:59 +0000 (23:09 +0100)]
Make FlatInput and YCbCrInput release the texture to the pool on invalidate_pixel_data().

10 years agoUse the ResourcePool to allocate RTT textures in EffectChain.
Steinar H. Gunderson [Tue, 21 Jan 2014 22:02:22 +0000 (23:02 +0100)]
Use the ResourcePool to allocate RTT textures in EffectChain.

10 years agoImplement the texture freelist in ResourcePool.
Steinar H. Gunderson [Tue, 21 Jan 2014 21:26:12 +0000 (22:26 +0100)]
Implement the texture freelist in ResourcePool.

10 years agoAdd missing format LUMINANCE8.
Steinar H. Gunderson [Tue, 21 Jan 2014 20:41:57 +0000 (21:41 +0100)]
Add missing format LUMINANCE8.

10 years agoFix YCbCrInput after the ResourcePool texture changes.
Steinar H. Gunderson [Tue, 21 Jan 2014 20:39:09 +0000 (21:39 +0100)]
Fix YCbCrInput after the ResourcePool texture changes.

10 years agoComplete a forgotten comment.
Steinar H. Gunderson [Tue, 21 Jan 2014 20:01:25 +0000 (21:01 +0100)]
Complete a forgotten comment.

10 years agoAdd support to the ResourcePool for 2D textures.
Steinar H. Gunderson [Tue, 21 Jan 2014 19:42:34 +0000 (20:42 +0100)]
Add support to the ResourcePool for 2D textures.

Currently we don't have a freelist, but this will change shortly.

10 years agoRetire the GL_GENERATE_MIPMAP hack for FlatInput.
Steinar H. Gunderson [Mon, 20 Jan 2014 23:56:27 +0000 (00:56 +0100)]
Retire the GL_GENERATE_MIPMAP hack for FlatInput.

I found very similar workaround code for this bug in Chromium,
with the following comment:

  // Workaround for Mac driver bug. In the large scheme of things setting
  // glTexParamter twice for glGenerateMipmap is probably not a lage performance
  // hit so there's probably no need to make this conditional. The bug appears
  // to be that if the filtering mode is set to something that doesn't require
  // mipmaps for rendering, or is never set to something other than the default,
  // then glGenerateMipmap misbehaves.

Going back all the way to the point in which this code was written,
it is indeed true; we called glGenerateMipmap(), and then right afterwards
set the mode to GL_LINEAR_MIPMAP_NEAREST. Since then, the code has been
reorganized and moved around a lot, and now we set the mode long before
the first call to glGenerateMipmap(), and thus we can retire the hack;
simply generate mipmaps on-demand, and that's the end of it. I tested
with the Mesa 8.0.x version where I originally saw this bug, and it passes
flat_input_test without any problems (well, actually all tests except
the tests for deconvolution sharpen, whose shaders are too big for it).

This is nice not only because it gives us a less hacky structure, but also
because GL_GENERATE_MIPMAPS is a nightmare for the driver to handle;
several edge conditions are tricky, from what I've been told.

10 years agoDisable OpenGL dithering, just to be on the safe side.
Steinar H. Gunderson [Sun, 19 Jan 2014 22:54:49 +0000 (23:54 +0100)]
Disable OpenGL dithering, just to be on the safe side.

I don't actually think any modern OpenGL implementations actually
heed this flag for 8-bit rendering, but it's fine to be on the safe
side nevertheless.

10 years agoRound explicitly after dithering, for GPUs that don't do it properly themselves.
Steinar H. Gunderson [Sun, 19 Jan 2014 22:53:18 +0000 (23:53 +0100)]
Round explicitly after dithering, for GPUs that don't do it properly themselves.

This was causing unit test failures in the DitherEffect unit test both on
ATI and nVidia GPUs; Intel also rounds somewhat inaccurately, but much,
much better, so the extra code won't be activated for them.

I think this might be driver-dependent, but we will detect it correctly
in any case.

10 years agoStore GL_FLOAT FlatInputs as fp32, not fp16.
Steinar H. Gunderson [Sun, 19 Jan 2014 19:42:22 +0000 (20:42 +0100)]
Store GL_FLOAT FlatInputs as fp32, not fp16.

There are two primary reasons for this:

 - GL_FLOAT FlatInput is primarily used for tests, and even more importantly,
   mostly accuracy tests. ATI's drivers appear to round off fp32 -> fp16
   wrong (truncate instead of round), which breaks some of these tests.
 - In case someone _would_ use GL_FLOAT inputs, they'd probably be updated
   every frame anyway, so the fp32 -> fp16 conversion step (probably on CPU)
   will negate any performance benefits by fp16 sampling anyway.

10 years agoTurn off .dot and .frag file generation during unit tests.
Steinar H. Gunderson [Sun, 19 Jan 2014 17:41:21 +0000 (18:41 +0100)]
Turn off .dot and .frag file generation during unit tests.

Even though this is sometimes useful in the effect_chain_test,
this makes the test suite literally five times as fast on my
machine due to all the disk I/O. We can always turn it on again
when debugging specific issues.

10 years agoAdd a new effect that can do FFT/IFFT.
Steinar H. Gunderson [Sun, 19 Jan 2014 17:27:55 +0000 (18:27 +0100)]
Add a new effect that can do FFT/IFFT.

10 years agoWe need to link the main library against pthreads now, since we lock in ResourcePool.
Steinar H. Gunderson [Sun, 19 Jan 2014 16:46:26 +0000 (17:46 +0100)]
We need to link the main library against pthreads now, since we lock in ResourcePool.

10 years agoMake effect_id phase-local instead of global.
Steinar H. Gunderson [Sat, 18 Jan 2014 21:07:29 +0000 (22:07 +0100)]
Make effect_id phase-local instead of global.

This is mainly to reduce the number of substantially identical shaders
we have to keep around and compile; even though two chains may be
different, often, some phase (and very often, a large one at that)
will be similar. However, in the old system, since effects had global
IDs, a change in an earlier phase would displace identifiers in a
later one, and the shader would be uncacheable.

Note that this means that an effect can actually have multiple effect_ids
now (since it could already be part of multiple phases). This is the
reason why we can't just keep having a single effect_id on the node
that we set phase-locally; it really needs to be different between phases.

10 years agoAdd a shared ResourcePool to share resources between EffectChains.
Steinar H. Gunderson [Fri, 17 Jan 2014 21:25:12 +0000 (22:25 +0100)]
Add a shared ResourcePool to share resources between EffectChains.

Right now in this first implementation, we only share shaders,
which mainly saves compile time when multiple EffectChains are
similar (e.g., many clips all are modified by white balance only).
However, in the future, the plan is for them to also be able to
share temporary textures.

10 years agoDocument EffectChain threading considerations.
Steinar H. Gunderson [Fri, 17 Jan 2014 18:01:21 +0000 (19:01 +0100)]
Document EffectChain threading considerations.

10 years agoAdd a file-level comment for EffectChain.
Steinar H. Gunderson [Fri, 17 Jan 2014 17:57:13 +0000 (18:57 +0100)]
Add a file-level comment for EffectChain.

10 years agoRemove the support for 1D textures as parameters.
Steinar H. Gunderson [Tue, 14 Jan 2014 21:48:42 +0000 (22:48 +0100)]
Remove the support for 1D textures as parameters.

This isn't required anymore after the Gamma{Compression,Expansion}Effect
stopped using it; and after seeing how it was easy to missample them
with regards to texture coordinates, I'm not honestly so sure anymore
they were a good idea in the first place.

10 years agoRemove unused element need_texture_update from DitherEffect.
Steinar H. Gunderson [Tue, 14 Jan 2014 19:10:50 +0000 (20:10 +0100)]
Remove unused element need_texture_update from DitherEffect.

Found by Coverity Scan.

10 years agoLet the application manage PBOs.
Steinar H. Gunderson [Sat, 11 Jan 2014 23:48:41 +0000 (00:48 +0100)]
Let the application manage PBOs.

Creating a PBO to hold the texture data just before upload (like we
did before this patch) is pointless; if that would help at all, the driver
could just do it itself. Instead, we expose the PBOs to the application
(in a way such that applications that don't care can continue to use
the simple interface). This means that a client that needs to do
e.g. a fade can optimize its texture upload by a process like this:

  1. Decode frame from input A.
  2. Upload frame from input A to GPU (by putting it into a PBO).
     Texture upload starts in the background.
  3. Decode frame from input B.
  4. Upload frame from input B to GPU. (This time, there will be
     no parallelism, though.)
  5. Render.

With correct use of ping-ponging PBOs, it is also possible to overlap
step 4/5 with operations from the _next_ frame in the fade.

More information can be found in this presentation:

  http://on-demand.gputechconf.com/gtc/2012/presentations/S0356-GTC2012-Texture-Transfers.pdf

10 years agoImplement GammaCompressionEffect using ALU ops instead of texture lookups.
Steinar H. Gunderson [Thu, 9 Jan 2014 23:51:52 +0000 (00:51 +0100)]
Implement GammaCompressionEffect using ALU ops instead of texture lookups.

This is the same as GammaExpansionEffect; however, the numerical issues
are much much bigger, and it took forever to actually get the coefficients
right for proper accuracy.

Added accuracy tests to GammaCompressionEffect to make sure things are
fine; unsurprisingly, just as with GammaExpansionEffect, the old texture
code wasn't all that accurate. The effects were not as bad, though;
it primarily affects 10- and 12-bit processing, and Movit isn't ready
for 12-bit accuracy-wise.

The benchmark wins are huge; in a chain with effectively only a
GammaExpansionEffect and a GammaCompressionEffect, FPS on Sandy Bridge
(HD3000) goes up ~80%. Seemingly sampling that 4096x1 texture was really
expensive.

10 years agoComment and README updates about Rec. 2020 in light of the accuracy test results.
Steinar H. Gunderson [Thu, 9 Jan 2014 20:50:43 +0000 (21:50 +0100)]
Comment and README updates about Rec. 2020 in light of the accuracy test results.

10 years agoAdd accuracy unit tests for GammaExpansionEffect.
Steinar H. Gunderson [Thu, 9 Jan 2014 19:55:02 +0000 (20:55 +0100)]
Add accuracy unit tests for GammaExpansionEffect.

After all the worry about accuracy in the polynomial expansion,
I figured it was time to actually add tests verifying the error
bounds here in a more reasonable way. The limits are set sort-of
randomly, more-or-less to what the new code already handles,
rounded up a bit. (The old texture-based code was _way_ worse than this,
it seems, probably due to texel center issues.)

This also shows that you can probably do 10-bit processing with
Movit without losing way too much accuracy, but that 12-bit is
too much for fp16 to handle.

10 years agoFix edge errors in the sRGB comment; I had used subs() on the wrong expression.
Steinar H. Gunderson [Wed, 8 Jan 2014 21:30:22 +0000 (22:30 +0100)]
Fix edge errors in the sRGB comment; I had used subs() on the wrong expression.

10 years agoFix a typo in a comment.
Steinar H. Gunderson [Wed, 8 Jan 2014 21:28:09 +0000 (22:28 +0100)]
Fix a typo in a comment.

10 years agoImplement GammaExpansionEffect using ALU ops instead of texture lookups.
Steinar H. Gunderson [Wed, 8 Jan 2014 21:14:42 +0000 (22:14 +0100)]
Implement GammaExpansionEffect using ALU ops instead of texture lookups.

In a standalone benchmark (on a Sandy Bridge laptop), this is pretty much
a no-op performance-wise, but when more ops are put into the mix, it's
a ~20% FPS win, and but in a more real situation with multiple inputs
etc., it's subjectively also a pretty clear win. The reason is probably
that we generally are way overloaded on texture operations.

Note that we had similar code like this before (before we started using
the texture for lookup), but it used pow(), which is markedly slower than our
fourth-degree polynomial approximation.

We should probably do the same for GammaCompressionEffect.

10 years agoIn the demo application, reset the FPS counter every hundred frames.
Steinar H. Gunderson [Wed, 8 Jan 2014 20:28:08 +0000 (21:28 +0100)]
In the demo application, reset the FPS counter every hundred frames.

Gives much, much better FPS counts for benchmarking.

10 years agoFix some outdated comments in GammaExpansionEffect.
Steinar H. Gunderson [Wed, 8 Jan 2014 20:22:35 +0000 (21:22 +0100)]
Fix some outdated comments in GammaExpansionEffect.

10 years agoIt's now 2014 :-P (Happy new year!)
Steinar H. Gunderson [Fri, 3 Jan 2014 01:22:55 +0000 (02:22 +0100)]
It's now 2014 :-P (Happy new year!)

10 years agoAdd an assertion failure that we don't add the same effect instance twice.
Steinar H. Gunderson [Wed, 1 Jan 2014 23:25:24 +0000 (00:25 +0100)]
Add an assertion failure that we don't add the same effect instance twice.

Doing this causes hard-to-understand crashes, so just bomb out at once.

10 years agoCalculate the RGB-to-XYZ matrix ourselves instead of using a “magic” one from Wikipedia.
Steinar H. Gunderson [Wed, 1 Jan 2014 11:43:36 +0000 (12:43 +0100)]
Calculate the RGB-to-XYZ matrix ourselves instead of using a “magic” one from Wikipedia.

Generally we try to derive such values from first principles when possible;
this is some of the oldest code in Movit, which explains why it was forgotten.

Maybe longer-term we should move this out of ColorspaceConversionEffect into a
free function in util.h or something similar, but for now, this will do.

10 years agoFix a minor error in one of the color temperature constants.
Steinar H. Gunderson [Mon, 30 Dec 2013 01:33:50 +0000 (02:33 +0100)]
Fix a minor error in one of the color temperature constants.

Wikipedia cites http://icpr.snu.ac.kr/resource/wop.pdf/J01/2002/041/R06/J012002041R060865.pdf,
but seems to differ in in the last decimal of one of the coefficients.
The error is, of course, inconsequential, but it's good to be correct
in any case, and I trust the paper more.

10 years agoAdd partial Rec. 2020 support.
Steinar H. Gunderson [Mon, 30 Dec 2013 01:31:23 +0000 (02:31 +0100)]
Add partial Rec. 2020 support.

10 years agoGenerate the FBO anew every render.
Steinar H. Gunderson [Sun, 29 Dec 2013 22:59:05 +0000 (23:59 +0100)]
Generate the FBO anew every render.

This fixes an issue where reusing the same EffectChain from two different GL
contexts would cause errors even if they are shared, because FBOs cannot be
shared between contexts (in the ARB extension, anyway).

There might be some negative performance implications to this, but I was unable
to measure any on Intel/Mesa. If this should prove to be a problem in the future,
we could maybe keep one around per context, or have the caller invalidate the
FBO for us.

10 years agoFix a bug where DeconvolutionSharpenEffect would forget one line of the kernel.
Steinar H. Gunderson [Sun, 29 Dec 2013 22:55:57 +0000 (23:55 +0100)]
Fix a bug where DeconvolutionSharpenEffect would forget one line of the kernel.

This manifested itself in that non-identity filters would start changing alpha
of solid images (since the kernel didn't sum up to one), which obviously isn't
good. Added a unit test to make sure it doesn't happen again.

10 years agoInstall effect_util.h; it is useful for people implementing their own effects.
Steinar H. Gunderson [Tue, 24 Dec 2013 15:07:56 +0000 (16:07 +0100)]
Install effect_util.h; it is useful for people implementing their own effects.

10 years agoSpelling fix.
Steinar H. Gunderson [Tue, 24 Dec 2013 12:51:34 +0000 (13:51 +0100)]
Spelling fix.

10 years agoAssert that the EffectChain is not finalized when someone tries to modify it.
Steinar H. Gunderson [Tue, 24 Dec 2013 00:51:42 +0000 (01:51 +0100)]
Assert that the EffectChain is not finalized when someone tries to modify it.

10 years agoFix another harmless Valgrind hit.
Steinar H. Gunderson [Sun, 22 Dec 2013 22:58:28 +0000 (23:58 +0100)]
Fix another harmless Valgrind hit.

10 years agoProperly check framebuffer status when generating FBOs.
Steinar H. Gunderson [Sun, 22 Dec 2013 22:47:02 +0000 (23:47 +0100)]
Properly check framebuffer status when generating FBOs.

10 years agoFix an issue with invalid texture number usage in measure_texel_subpixel_precision().
Steinar H. Gunderson [Sun, 22 Dec 2013 22:46:51 +0000 (23:46 +0100)]
Fix an issue with invalid texture number usage in measure_texel_subpixel_precision().

10 years agoA small comment fix in ColorspaceConversionEffect.
Steinar H. Gunderson [Mon, 16 Dec 2013 20:25:07 +0000 (21:25 +0100)]
A small comment fix in ColorspaceConversionEffect.

10 years agoProperly link in multiply_effect.
Steinar H. Gunderson [Sat, 14 Dec 2013 01:20:25 +0000 (02:20 +0100)]
Properly link in multiply_effect.

10 years agoPromote MultiplyEffect to a real effect.
Steinar H. Gunderson [Wed, 6 Nov 2013 23:20:59 +0000 (00:20 +0100)]
Promote MultiplyEffect to a real effect.

The intended use is for overlays, where you'd want to do e.g.
0.2*x atop y instead of just x atop y, fading the overlay in or out.

Also, give it full RGBA inputs, as that might potentially be useful
for someone. It certainly was useful for adapting it to continue to
be used in the EffectChain unit test, at least. (It doesn't have
its own unit test, since it's so trivial.)

10 years agoFix a bug where PaddingEffect could create assertion errors.
Steinar H. Gunderson [Wed, 9 Oct 2013 20:24:56 +0000 (22:24 +0200)]
Fix a bug where PaddingEffect could create assertion errors.

The ratinale is explained in the comment, but in short, PaddingEffect
could convert blank to premultiplied alpha without realizing that
it then needed linear light (since premultiplied alpha in our case
is defined as being in linear light). Also added a unit test.

Reported by Christophe Thommeret.

10 years agoClip below-zero (out-of-gamut) colors in LiftGammaGainEffect.
Steinar H. Gunderson [Sat, 28 Sep 2013 22:16:48 +0000 (00:16 +0200)]
Clip below-zero (out-of-gamut) colors in LiftGammaGainEffect.

pow(x, y) for x < 0 is undefined, and behaves differently on nVidia
and Intel. This can reasonably happen when having inputs from a different
gamut, or just a complex chain before the LGG effect; there's nothing
in Movit that prohibits out-of-sRGB-gamut colors. Thus, we need to detect
such inputs and clamp them.

We could in theory check for the special case of y=1 (no gamma change)
and allow negative values through then, but this wouldn't seem like a good
solution, especially if animating gamma.

Found and debugged by Christophe Thommeret.

11 years agoMake building the demo app optional if SDL_image and/or libpng12 are not found.
Steinar H. Gunderson [Wed, 6 Feb 2013 00:09:27 +0000 (01:09 +0100)]
Make building the demo app optional if SDL_image and/or libpng12 are not found.

11 years agoAdd a pkg-config variable “shaderdir” to locate the shaders.
Steinar H. Gunderson [Tue, 5 Feb 2013 09:26:49 +0000 (10:26 +0100)]
Add a pkg-config variable “shaderdir” to locate the shaders.

Patch from Dan Dennedy.

11 years agoInstall defs.h on make install, since it is needed by effect.h.
Steinar H. Gunderson [Tue, 5 Feb 2013 09:15:02 +0000 (10:15 +0100)]
Install defs.h on make install, since it is needed by effect.h.

11 years agoPut the resample alpha handling on the right effect.
Steinar H. Gunderson [Sun, 3 Feb 2013 15:39:44 +0000 (16:39 +0100)]
Put the resample alpha handling on the right effect.

11 years agoIndentation fix in Makefile.in.
Steinar H. Gunderson [Sun, 3 Feb 2013 15:09:27 +0000 (16:09 +0100)]
Indentation fix in Makefile.in.

11 years agoDo not call autoheader, since we do not use config.h.
Steinar H. Gunderson [Sun, 3 Feb 2013 15:06:50 +0000 (16:06 +0100)]
Do not call autoheader, since we do not use config.h.

11 years agoUse autoconf defaults for CXX and CXXFLAGS.
Steinar H. Gunderson [Sun, 3 Feb 2013 15:06:35 +0000 (16:06 +0100)]
Use autoconf defaults for CXX and CXXFLAGS.

11 years agoRename RGBATriplet to RGBATuple, to avoid silliness.
Steinar H. Gunderson [Sun, 3 Feb 2013 15:04:12 +0000 (16:04 +0100)]
Rename RGBATriplet to RGBATuple, to avoid silliness.

11 years agoMake util.h private to the effects; instead, defs.h contains what effect.h needs...
Steinar H. Gunderson [Sun, 3 Feb 2013 14:17:39 +0000 (15:17 +0100)]
Make util.h private to the effects; instead, defs.h contains what effect.h needs. Keeps some junk out of the namespace of the client.

11 years agoPrefix include guards with _MOVIT to avoid clashes with external files.
Steinar H. Gunderson [Sun, 3 Feb 2013 14:14:11 +0000 (15:14 +0100)]
Prefix include guards with _MOVIT to avoid clashes with external files.

11 years agoSmall cleanup in movit.pc.in.
Steinar H. Gunderson [Sun, 3 Feb 2013 12:52:53 +0000 (13:52 +0100)]
Small cleanup in movit.pc.in.

11 years agoAdd a distclean target.
Steinar H. Gunderson [Sun, 3 Feb 2013 12:39:43 +0000 (13:39 +0100)]
Add a distclean target.

11 years agoUpdate README for the new output alpha constants.
Steinar H. Gunderson [Sun, 3 Feb 2013 12:39:34 +0000 (13:39 +0100)]
Update README for the new output alpha constants.

11 years agoFix cleaning of .dot and .frag files.
Steinar H. Gunderson [Sun, 3 Feb 2013 12:37:44 +0000 (13:37 +0100)]
Fix cleaning of .dot and .frag files.

11 years agoAdd a pkg-config file.
Steinar H. Gunderson [Sun, 3 Feb 2013 12:35:18 +0000 (13:35 +0100)]
Add a pkg-config file.

11 years agoMakefile should now be in .gitignore.
Steinar H. Gunderson [Sun, 3 Feb 2013 12:34:21 +0000 (13:34 +0100)]
Makefile should now be in .gitignore.

11 years agoRemove stray file movit_pch.h, which was never meant to be checked in.
Steinar H. Gunderson [Sun, 3 Feb 2013 12:27:05 +0000 (13:27 +0100)]
Remove stray file movit_pch.h, which was never meant to be checked in.

11 years agoSwitch to autoconf to find libraries.
Steinar H. Gunderson [Sun, 3 Feb 2013 12:25:32 +0000 (13:25 +0100)]
Switch to autoconf to find libraries.

Also, make a rudimentary make install command.

We don't use anything fancy from autoconf yet (in particular,
no config.h file), and we don't use automake or libtool.
Most likely, this will happen later.

11 years agoRemove obsolete files header.vert and footer.vert.
Steinar H. Gunderson [Sun, 3 Feb 2013 12:18:41 +0000 (13:18 +0100)]
Remove obsolete files header.vert and footer.vert.

11 years agoAdd some missing tests to .gitignore.
Steinar H. Gunderson [Sat, 2 Feb 2013 14:47:23 +0000 (15:47 +0100)]
Add some missing tests to .gitignore.

11 years agoStop linking unit tests et al against SDL_image and other things that only the demo...
Steinar H. Gunderson [Sat, 2 Feb 2013 13:44:26 +0000 (14:44 +0100)]
Stop linking unit tests et al against SDL_image and other things that only the demo program needs.

11 years agoRemove an unused function. Found by Clang.
Steinar H. Gunderson [Sat, 2 Feb 2013 13:34:21 +0000 (14:34 +0100)]
Remove an unused function. Found by Clang.

11 years agoSplit out some private utilities into effect_util.cpp, so we do not need to include...
Steinar H. Gunderson [Sat, 2 Feb 2013 13:32:01 +0000 (14:32 +0100)]
Split out some private utilities into effect_util.cpp, so we do not need to include e.g. Eigen from effect.h.

11 years agoRun include-what-you-use over all of movit. Some hand tuning.
Steinar H. Gunderson [Sat, 2 Feb 2013 13:11:29 +0000 (14:11 +0100)]
Run include-what-you-use over all of movit. Some hand tuning.

11 years agoFix alpha handling for blur; it needs to be on the working (rewritten-to) effect.
Steinar H. Gunderson [Sat, 2 Feb 2013 01:43:08 +0000 (02:43 +0100)]
Fix alpha handling for blur; it needs to be on the working (rewritten-to) effect.

11 years agoAdd a new alpha handling method, INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK.
Steinar H. Gunderson [Sat, 2 Feb 2013 01:35:18 +0000 (02:35 +0100)]
Add a new alpha handling method, INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK.

This should fix most of the problems where you only process inputs
without alpha, but the framework still inserts an AlphaDivisionEffect
at the end because it loses track of the blank alpha state throughout
the pipeline and the output expects postmultiplied alpha.

There's one important case left, though: MixEffect will always reset
tha alpha state to premultiplied. We should probably fix that too
at some later stage.

11 years agoRename the OutputAlphaFormat enums; they had gotten inconsistent after the last alpha...
Steinar H. Gunderson [Sat, 2 Feb 2013 01:18:22 +0000 (02:18 +0100)]
Rename the OutputAlphaFormat enums; they had gotten inconsistent after the last alpha-related rename.

11 years agoGive the alpha enums somewhat better/more consistent names, and shuffle them around...
Steinar H. Gunderson [Fri, 1 Feb 2013 23:38:46 +0000 (00:38 +0100)]
Give the alpha enums somewhat better/more consistent names, and shuffle them around a bit.

11 years agoIn resizing effects, add the notion of a “virtual output size”.
Steinar H. Gunderson [Fri, 1 Feb 2013 00:03:00 +0000 (01:03 +0100)]
In resizing effects, add the notion of a “virtual output size”.

This is the size that the effect wants to be perceived as for the next
effect in the chain, which is useful if you e.g. have a blur and then
padding. Even though the blur might rescale the image down from e.g.
512x512 to 128x128 before blurring (in case of a large blur), and this
size is what actually comes out in the texture at the other end,
it still wants to be treated as a 512x512 image when adding padding.

Reported by Christophe Thommeret.

11 years agoGive SizeStoringEffect an effect_type_id(), for easier debugging of the unit test.
Steinar H. Gunderson [Fri, 1 Feb 2013 00:02:55 +0000 (01:02 +0100)]
Give SizeStoringEffect an effect_type_id(), for easier debugging of the unit test.

11 years agoIf all inputs to an effect have the same input size, use that instead of fitting...
Steinar H. Gunderson [Tue, 29 Jan 2013 19:11:23 +0000 (20:11 +0100)]
If all inputs to an effect have the same input size, use that instead of fitting to the aspect.

The common case here is one-input effects on overlays.
Reported by Christophe Thommeret.

11 years agoFix a Clang warning.
Steinar H. Gunderson [Thu, 24 Jan 2013 09:22:59 +0000 (10:22 +0100)]
Fix a Clang warning.

Patch by Dan Dennedy.

11 years agoFix a bug where intermediate phase outputs could get too low height.
Steinar H. Gunderson [Wed, 23 Jan 2013 23:43:26 +0000 (00:43 +0100)]
Fix a bug where intermediate phase outputs could get too low height.

Basically our aspect ratio adjustment and lack of proper roundoff
could conspire to let e.g. mix(1280x720, 939x939) = 1669x938,
which is obviously wrong. I could probably have fixed it with
an extra lrintf(), but it seems more robust to simply avoid the
extra conversion (ie., never convert height -> width -> height).

Add a unit test to verify.

11 years agoMerge remote-tracking branch 'origin/master'
Steinar H. Gunderson [Tue, 22 Jan 2013 22:59:19 +0000 (23:59 +0100)]
Merge remote-tracking branch 'origin/master'

11 years agoAllow for more than ten bits in subpixel precision measuring; modern llvmpipe seems...
Steinar H. Gunderson [Mon, 21 Jan 2013 23:41:03 +0000 (00:41 +0100)]
Allow for more than ten bits in subpixel precision measuring; modern llvmpipe seems to have 11.

11 years agoDeconvolutionSharpenEffect needs texture bounce.
Steinar H. Gunderson [Mon, 21 Jan 2013 22:29:11 +0000 (23:29 +0100)]
DeconvolutionSharpenEffect needs texture bounce.

Anything else will be incredibly slow. Reported by Christophe Thommeret.

11 years agoFix another stack overflow in EffectChainTest.
Steinar H. Gunderson [Mon, 21 Jan 2013 21:48:42 +0000 (22:48 +0100)]
Fix another stack overflow in EffectChainTest.

Again, found with llvmpipe.

11 years agoLoosen up a boundary in DitherEffectTest by 10%.
Steinar H. Gunderson [Mon, 21 Jan 2013 21:44:24 +0000 (22:44 +0100)]
Loosen up a boundary in DitherEffectTest by 10%.

Seemingly needed on my nVidia machine with the newest drivers.

11 years agoFix a narrowing conversion within {} in PaddingEffect (C++11 compatibility).
Steinar H. Gunderson [Mon, 21 Jan 2013 21:41:18 +0000 (22:41 +0100)]
Fix a narrowing conversion within {} in PaddingEffect (C++11 compatibility).

11 years agoFix a stack overflow in EffectChainTest.
Steinar H. Gunderson [Mon, 21 Jan 2013 21:33:01 +0000 (22:33 +0100)]
Fix a stack overflow in EffectChainTest.

11 years agoIn OverlayEffectTest, handle that RGB on zero alpha is undefined.
Steinar H. Gunderson [Mon, 21 Jan 2013 21:09:51 +0000 (22:09 +0100)]
In OverlayEffectTest, handle that RGB on zero alpha is undefined.

Trickled by llvmpipe.

11 years agoAdd sdl-config --cflags and --libs when compiling.
Steinar H. Gunderson [Mon, 21 Jan 2013 21:04:00 +0000 (22:04 +0100)]
Add sdl-config --cflags and --libs when compiling.

11 years agoCheck return value from SDL_Init().
Steinar H. Gunderson [Mon, 21 Jan 2013 20:44:00 +0000 (21:44 +0100)]
Check return value from SDL_Init().

11 years agoUse NULL instead of png_voidp_NULL.
Steinar H. Gunderson [Mon, 21 Jan 2013 19:55:26 +0000 (20:55 +0100)]
Use NULL instead of png_voidp_NULL.

Fixes a compile error on OS X, reportedly.

11 years agoDon't override GTEST_DIR if it already is set.
Steinar H. Gunderson [Mon, 21 Jan 2013 19:51:22 +0000 (20:51 +0100)]
Don't override GTEST_DIR if it already is set.

11 years agoLink against -lpng, since we can now write screenshots in PNG format.
Steinar H. Gunderson [Mon, 21 Jan 2013 00:42:28 +0000 (01:42 +0100)]
Link against -lpng, since we can now write screenshots in PNG format.

11 years agoAsk Google Test not to use exceptions.
Steinar H. Gunderson [Sun, 20 Jan 2013 01:11:53 +0000 (02:11 +0100)]
Ask Google Test not to use exceptions.

Gives us slightly cleaner shutdown on error. Found by Coverity Scan.

11 years agoMake the internal effects private to EffectChain.
Steinar H. Gunderson [Sun, 20 Jan 2013 01:04:35 +0000 (02:04 +0100)]
Make the internal effects private to EffectChain.

ColorspaceConversionEffect, DitherEffect, GammaExpansionEffect and GammaCompressionEffect
are all supposed to be used by EffectChain only, so make them private; I've had
reports of users trying to use these directly, leaving the framework in a confused state.