Branch: refs/heads/master
  Home:   https://github.com/mltframework/mlt
  Commit: 667cc6a5548a561bb1a2a70cb6f1ab27c53cdc5a
      
https://github.com/mltframework/mlt/commit/667cc6a5548a561bb1a2a70cb6f1ab27c53cdc5a
  Author: Steinar H. Gunderson <sgunder...@bigfoot.com>
  Date:   2014-01-13 (Mon, 13 Jan 2014)

  Changed paths:
    M src/modules/opengl/Makefile
    R src/modules/opengl/filter_deconvolution_sharpen.cpp
    R src/modules/opengl/filter_deconvolution_sharpen.yml
    R src/modules/opengl/filter_lift_gamma_gain.cpp
    R src/modules/opengl/filter_lift_gamma_gain.yml
    A src/modules/opengl/filter_movit_deconvolution_sharpen.cpp
    A src/modules/opengl/filter_movit_deconvolution_sharpen.yml
    A src/modules/opengl/filter_movit_lift_gamma_gain.cpp
    A src/modules/opengl/filter_movit_lift_gamma_gain.yml
    A src/modules/opengl/filter_movit_white_balance.cpp
    A src/modules/opengl/filter_movit_white_balance.yml
    R src/modules/opengl/filter_white_balance.cpp
    R src/modules/opengl/filter_white_balance.yml

  Log Message:
  -----------
  Rename some Movit filter filenames, for consistency.


  Commit: 6005571e839b74e9019f8f43b4ef4ff76f793780
      
https://github.com/mltframework/mlt/commit/6005571e839b74e9019f8f43b4ef4ff76f793780
  Author: Steinar H. Gunderson <sgunder...@bigfoot.com>
  Date:   2014-01-13 (Mon, 13 Jan 2014)

  Changed paths:
    M src/modules/opengl/filter_glsl_manager.cpp
    M src/modules/opengl/filter_glsl_manager.h
    M src/modules/opengl/filter_movit_blur.cpp
    M src/modules/opengl/filter_movit_convert.cpp
    M src/modules/opengl/filter_movit_crop.cpp
    M src/modules/opengl/filter_movit_deconvolution_sharpen.cpp
    M src/modules/opengl/filter_movit_diffusion.cpp
    M src/modules/opengl/filter_movit_glow.cpp
    M src/modules/opengl/filter_movit_lift_gamma_gain.cpp
    M src/modules/opengl/filter_movit_mirror.cpp
    M src/modules/opengl/filter_movit_opacity.cpp
    M src/modules/opengl/filter_movit_resample.cpp
    M src/modules/opengl/filter_movit_resize.cpp
    M src/modules/opengl/filter_movit_saturation.cpp
    M src/modules/opengl/filter_movit_vignette.cpp
    M src/modules/opengl/filter_movit_white_balance.cpp
    M src/modules/opengl/mlt_movit_input.cpp
    M src/modules/opengl/mlt_movit_input.h
    A src/modules/opengl/optional_effect.h
    M src/modules/opengl/transition_movit_mix.cpp
    M src/modules/opengl/transition_movit_overlay.cpp

  Log Message:
  -----------
  Change how the Movit chain is built.

* Build the chain in GlslManager.

  This allows us to get rid of effects that don't actually do anything
  (like all the normalizers in the common case); in Movit, they tend
  to burn a lot of memory bandwidth. We solve this by a new OptionalEffect
  template, that can rewrite itself out of the graph if it sees it is
  a no-op. We need to recreate the chain from scratch if this status
  should change (e.g. the input resolution changed from one frame to the
  next, and we thus suddenly need resizing after all), so we keep a
  "fingerprint" string that contains all the unique IDs of the services
  in use, as well as their disabled status, and compare against this frame.

  Building the chain in one piece also opens up for transitions to be more
  efficient; they are now built as part of one big Movit chain, instead of
  bouncing to an 8-bit sRGB buffer and back.

* Change the mlt_glsl type.

  Now, the mlt_glsl image type has a defined value, which is the
  mlt_service pointer. Each filter is responsible for storing this input
  service. This, together with the mlt_frame, enables us to actually
  build the Movit chain based on the MLT relations, instead of just relying in
  the order in which they are called and assuming everything has a single input.

  As a special case, the value (mlt_service) -1 (which should never be a valid
  pointer) means that we read the information from an input rather than an
  effect. In this case, we take a copy of the pixel data we get in (since it
  will soon be garbage collected), store it in an MltInput and then store that
  MltInput for later use. This could probably be further simplified in the
  future to get completely rid of MltInput and just use the regular
  FlatInput/YCbCrInput instead.

  This also requires us to change so that the chain is built and finalized at
  the _end_ of the conversion steps (where it's logically needed), instead of at
  the beginning as before. The beginning (conversion from * -> mlt_glsl) now
  only stores the input as described below.

* Change Effect and EffectChain storage.

  This changes the storage of Movit stuff as follows:

   - The EffectChain (along with some associated information to be able
     to more easily locate the services and Effect pointers; together,
     called a GlslChain) is now stored on the output service, not on the input
     producer. This allows us to have multiple EffectChains floating around.
   - The Effect pointers no longer live permanently on the MLT graph, since
     each MLT service can have more than one Effect. Instead, they live
     temporarily on the frame (because the frame is not shared between
     threads, giving us a poor man's version of thread-local storage),
     until they reach the point where we decide if we need to rebuild the
     EffectChain or not. At this point, they are either made part of the
     chain (and owned by it), or disposed as unneeded.
   - The MltInput also lives on the frame. (If we have multiple inputs,
     we also have multiple frames.) As mentioned above, its use is signaled by
     an mlt_service of -1.

* Change how Movit parameter setting works.

  Services no longer set parameters directly on the Movit filters, since
  they cannot know before the graph construction time whether the correct
  destination is the newly created Effect, or a similar one in the EffectChain.
  Instead, they set special properties (movit.parms.<type>.<name>[<index>]),
  and then the convert filter uses these to set Movit parameters on the right
  Effects.


  Commit: 3bfb2b31cf05d183aa3ac44febc2824dcd100463
      
https://github.com/mltframework/mlt/commit/3bfb2b31cf05d183aa3ac44febc2824dcd100463
  Author: Steinar H. Gunderson <sgunder...@bigfoot.com>
  Date:   2014-01-13 (Mon, 13 Jan 2014)

  Changed paths:
    M src/modules/opengl/Makefile
    R src/modules/opengl/fbo_input.cpp
    R src/modules/opengl/fbo_input.h
    M src/modules/opengl/mlt_movit_input.cpp
    M src/modules/opengl/mlt_movit_input.h

  Log Message:
  -----------
  Remove now unused FBOInput.


  Commit: 44ceaed3162eb0004c56d1921807ef24bf8adb21
      
https://github.com/mltframework/mlt/commit/44ceaed3162eb0004c56d1921807ef24bf8adb21
  Author: Steinar H. Gunderson <sgunder...@bigfoot.com>
  Date:   2014-01-13 (Mon, 13 Jan 2014)

  Changed paths:
    M src/modules/core/producer_colour.c

  Log Message:
  -----------
  Producer color hack for Movit.


  Commit: 7a813d44afa9d1d1639b64610f7b28156c13c595
      
https://github.com/mltframework/mlt/commit/7a813d44afa9d1d1639b64610f7b28156c13c595
  Author: Dan Dennedy <d...@dennedy.org>
  Date:   2014-01-14 (Tue, 14 Jan 2014)

  Changed paths:
    M src/framework/mlt_tractor.c

  Log Message:
  -----------
  Fix movit.convert.fence frame property when using tractor.


  Commit: 6dcd6c05cf6da94a2b10a91c4df33cea17adb4aa
      
https://github.com/mltframework/mlt/commit/6dcd6c05cf6da94a2b10a91c4df33cea17adb4aa
  Author: Dan Dennedy <d...@dennedy.org>
  Date:   2014-01-14 (Tue, 14 Jan 2014)

  Changed paths:
    M src/modules/opengl/factory.c

  Log Message:
  -----------
  Fix metadata registration of renamed movit filters.


  Commit: c391321305b734567e7bb9310f15831d17b085b0
      
https://github.com/mltframework/mlt/commit/c391321305b734567e7bb9310f15831d17b085b0
  Author: Dan Dennedy <d...@dennedy.org>
  Date:   2014-01-14 (Tue, 14 Jan 2014)

  Changed paths:
    M src/modules/opengl/filter_movit_convert.cpp

  Log Message:
  -----------
  Convert a printf to mlt_log_debug.


Compare: https://github.com/mltframework/mlt/compare/3b15124f0677...c391321305b7
------------------------------------------------------------------------------
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments & Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk
_______________________________________________
Mlt-devel mailing list
Mlt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mlt-devel

Reply via email to