]> git.sesse.net Git - mlt/log
mlt
13 years agoFix distorted frame in slideshow transitions.
Dan Dennedy [Fri, 20 Aug 2010 07:29:05 +0000 (00:29 -0700)]
Fix distorted frame in slideshow transitions.

Applies to the .all.ext slideshow approach. May also apply to image
sequences with mixed resolutions.

13 years agoAdd audiowave filter.
Dan Dennedy [Thu, 19 Aug 2010 08:23:47 +0000 (01:23 -0700)]
Add audiowave filter.

This replaces the video with the audio waveform. Currently, it only
works on producers that also provide video.

13 years agoImprove audio waveform resault reliability.
Dan Dennedy [Thu, 19 Aug 2010 08:21:31 +0000 (01:21 -0700)]
Improve audio waveform resault reliability.

This scales the audio sample rate up to meet the requested image
resolution, 16 KHz at a time.

13 years agoFix potential segfault in mlt_frame_get_waveform.
Dan Dennedy [Thu, 19 Aug 2010 08:02:41 +0000 (01:02 -0700)]
Fix potential segfault in mlt_frame_get_waveform.

Also, reduce sample rate for better performance.

13 years agoImprove audio waveform quality.
Dan Dennedy [Thu, 19 Aug 2010 07:29:48 +0000 (00:29 -0700)]
Improve audio waveform quality.

This averages over the pcm samples in each image column by adding a
shade of gray. It also draws a solid white base line for each channel.

13 years agoFix waveform generation.
Dan Dennedy [Thu, 19 Aug 2010 04:45:02 +0000 (21:45 -0700)]
Fix waveform generation.

It was not obtaining a valid fps. Also, changed rendering to something
more expected - negative as negative and channels stacked.
Also, add a Python binding to this call to return 8-bit grayscale image
as a Python string. Finally, add a Python example.

13 years agoConvert panner to use range [0, 1].
Dan Dennedy [Tue, 17 Aug 2010 07:47:13 +0000 (00:47 -0700)]
Convert panner to use range [0, 1].

Instead of [-1, 1]. This works better with Kdenlive.

13 years agoAdd a panning filter.
Dan Dennedy [Mon, 16 Aug 2010 09:09:46 +0000 (02:09 -0700)]
Add a panning filter.

This does a simple left/right balance when channel=-1 (default). When
channel >= 0, you can adjust an individual channel's left/right
position. Whereas the simple balance will not cause one channel to
appear in another channel, the individual channel does. The start/end
properties are floats in the range [-1.0, 1.0]. A start property alone
makes it constant over the duration of the filter. There is some
handling for more than 2 channels by providing front/rear fade and
ganging (balance front and rear together or fade left and right
together).

13 years agoFix ramping the mix level in mix transition.
Dan Dennedy [Mon, 16 Aug 2010 08:58:59 +0000 (01:58 -0700)]
Fix ramping the mix level in mix transition.

Without ramping the same mix level is applied across the samples in the
frame. The result is a stair-stepping effect. With ramping, the mix
levels are actually values _between_ frames and the mix factor gradually
changes from one level to the next across all of the samples in the
frame.

13 years agoOnly do channelcopy/swap if there is valid work.
Dan Dennedy [Mon, 16 Aug 2010 00:58:42 +0000 (17:58 -0700)]
Only do channelcopy/swap if there is valid work.

13 years agoAdd filter channelswap.
Dan Dennedy [Mon, 16 Aug 2010 00:53:02 +0000 (17:53 -0700)]
Add filter channelswap.

It is a permutation of channelcopy that can be used from channelcopy as
well by setting swap=1.

13 years agoMake it easier to switch between scaled and unscaled native colorspace
Dan Dennedy [Sun, 15 Aug 2010 04:58:05 +0000 (21:58 -0700)]
Make it easier to switch between scaled and unscaled native colorspace
converters.

13 years agoImprove quality of libswscale conversions and scaling.
Dan Dennedy [Sat, 14 Aug 2010 07:55:24 +0000 (00:55 -0700)]
Improve quality of libswscale conversions and scaling.

13 years agoCleanup existing native color space conversions.
Dan Dennedy [Fri, 13 Aug 2010 05:49:36 +0000 (22:49 -0700)]
Cleanup existing native color space conversions.

This change clarifies that the existing conversions are according to the
ITU 601 standard and scaled to and from full gamut RGB. Also, adjust 2
coefficients according to Charles Poynton's matrices. This does not yet
attempt to make any substantial improvements.

Finally, it replaces the verbose logic and redundancy in the image
conversion routine with a concise function dispatch table.

13 years agoChange SDL still consumer to use RGBA.
Dan Dennedy [Mon, 9 Aug 2010 06:43:33 +0000 (23:43 -0700)]
Change SDL still consumer to use RGBA.

Since frei0r filters are popular and use rgba, and also because Kdenlive
scopes request rgba, this will reduce the number of conversions.

13 years agoMake libexif include compatible with more systems/versions.
Dan Dennedy [Mon, 9 Aug 2010 06:36:12 +0000 (23:36 -0700)]
Make libexif include compatible with more systems/versions.

13 years agoFix image cache hit updating position state (kdenlive-1714).
Dan Dennedy [Mon, 9 Aug 2010 04:16:03 +0000 (21:16 -0700)]
Fix image cache hit updating position state (kdenlive-1714).

13 years agoOptimize some deinterlace filter logic.
Dan Dennedy [Mon, 9 Aug 2010 04:10:19 +0000 (21:10 -0700)]
Optimize some deinterlace filter logic.

Prevents YADIF from fetching current frame image if previous frame image
is signalled progressive. Also, tells mlt_service to stop decorating
frame with previous and next frames when producer is determined to be
progressive or deinterlace is not requested.

13 years agoFix scaling method on B frames of some transitions.
Dan Dennedy [Sat, 7 Aug 2010 07:59:17 +0000 (00:59 -0700)]
Fix scaling method on B frames of some transitions.

13 years agoFix tractor to set conversion functions on frames it generates.
Dan Dennedy [Fri, 6 Aug 2010 06:54:01 +0000 (23:54 -0700)]
Fix tractor to set conversion functions on frames it generates.

13 years agoMove firing consumer-frame-show to after done with image.
Dan Dennedy [Thu, 5 Aug 2010 06:12:54 +0000 (23:12 -0700)]
Move firing consumer-frame-show to after done with image.

13 years agoInitialize processed var and skip if NULL.
Dan Dennedy [Thu, 5 Aug 2010 06:04:32 +0000 (23:04 -0700)]
Initialize processed var and skip if NULL.

13 years agoCleanup & fix memleak
j-b-m [Thu, 29 Jul 2010 20:01:09 +0000 (21:01 +0100)]
Cleanup & fix memleak

modified:   gtk2/producer_pixbuf.c
modified:   qimage/qimage_wrapper.cpp

13 years agoUse libexif to read exif orientation in images
j-b-m [Wed, 28 Jul 2010 22:47:19 +0000 (23:47 +0100)]
Use libexif to read exif orientation in images
modified:   src/modules/gtk2/Makefile
modified:   src/modules/gtk2/configure
modified:   src/modules/gtk2/producer_pixbuf.c
modified:   src/modules/qimage/Makefile
modified:   src/modules/qimage/configure
modified:   src/modules/qimage/qimage_wrapper.cpp
deleted:    src/modules/qimage/readexif.h

13 years agoRead EXIF info inside MLT, based on jpegexiforient
j-b-m [Mon, 26 Jul 2010 23:14:31 +0000 (01:14 +0200)]
Read EXIF info inside MLT, based on jpegexiforient

modified:   src/modules/gtk2/producer_pixbuf.c
modified:   src/modules/qimage/qimage_wrapper.cpp
new file:   src/modules/qimage/readexif.h

13 years agoMerge branch 'master' into kdenlivetitle
j-b-m [Mon, 26 Jul 2010 21:42:58 +0000 (23:42 +0200)]
Merge branch 'master' into kdenlivetitle

13 years agoFix memory corruption on any frei0r plugin with color param.
Dan Dennedy [Fri, 23 Jul 2010 00:50:49 +0000 (17:50 -0700)]
Fix memory corruption on any frei0r plugin with color param.

13 years agoRecognize new FREI0R_PATH env var.
Dan Dennedy [Fri, 23 Jul 2010 00:33:55 +0000 (17:33 -0700)]
Recognize new FREI0R_PATH env var.

FREI0R_PATH was introduced in v1.2 of the frei0r specification.
MLT_FREI0R_PLUGIN_PATH still accepted for backwards compatibility.

13 years agoFix exif rotation angle
j-b-m [Tue, 20 Jul 2010 16:40:34 +0000 (18:40 +0200)]
Fix exif rotation angle
modified:   src/modules/gtk2/producer_pixbuf.c
modified:   src/modules/qimage/qimage_wrapper.cpp

13 years agoSupport exif rotation with pixbuf producer
j-b-m [Tue, 20 Jul 2010 16:33:14 +0000 (18:33 +0200)]
Support exif rotation with pixbuf producer

modified:   src/modules/gtk2/producer_pixbuf.c

13 years agoAdd support for auto rotation for images with exif data
j-b-m [Tue, 20 Jul 2010 15:19:34 +0000 (17:19 +0200)]
Add support for auto rotation for images with exif data
The meta.attr.rotation property must be set to the exif data
to get the auto rotate effect. Only supported by qimage producer, not
with pixbuf currently...
modified:   src/modules/qimage/qimage_wrapper.cpp

13 years agoFix infinite loop on some audio decode errors (kdenlive-1690).
Dan Dennedy [Tue, 20 Jul 2010 02:47:24 +0000 (19:47 -0700)]
Fix infinite loop on some audio decode errors (kdenlive-1690).

13 years agoFix crash when repeating frames after failure to decode video.
Dan Dennedy [Thu, 15 Jul 2010 06:48:33 +0000 (23:48 -0700)]
Fix crash when repeating frames after failure to decode video.

13 years agoUpdate ChangeLog for v0.5.6.
Dan Dennedy [Sun, 20 Jun 2010 19:07:20 +0000 (12:07 -0700)]
Update ChangeLog for v0.5.6.

13 years agoSet version to 0.5.6.
Dan Dennedy [Sun, 20 Jun 2010 19:06:10 +0000 (12:06 -0700)]
Set version to 0.5.6.

13 years agoAdd v0.5.6 release notes.
Dan Dennedy [Sun, 20 Jun 2010 19:05:04 +0000 (12:05 -0700)]
Add v0.5.6 release notes.

13 years agoFixup local ffmpeg build.
Dan Dennedy [Sun, 20 Jun 2010 19:02:31 +0000 (12:02 -0700)]
Fixup local ffmpeg build.

Set PIC compiler flag, make libavdevice optional, and set recommended
version to 0.6 branch.

13 years agoFix extra mlt_service_unlock in mlt_service_close.
Dan Dennedy [Thu, 10 Jun 2010 05:53:43 +0000 (22:53 -0700)]
Fix extra mlt_service_unlock in mlt_service_close.

Regression in commit 5e12f8.

13 years agoFix the relative position of affine filter.
Dan Dennedy [Sat, 19 Jun 2010 21:02:19 +0000 (14:02 -0700)]
Fix the relative position of affine filter.

13 years agoFix affine interpolation reading outside image.
Dan Dennedy [Fri, 18 Jun 2010 07:23:30 +0000 (00:23 -0700)]
Fix affine interpolation reading outside image.

This created image garbage along some edges.

13 years agoFix max affine geometry size wrt aspect.
Dan Dennedy [Fri, 18 Jun 2010 07:07:44 +0000 (00:07 -0700)]
Fix max affine geometry size wrt aspect.

13 years agoRevoke special handling for vorbis.
Dan Dennedy [Fri, 18 Jun 2010 06:29:13 +0000 (23:29 -0700)]
Revoke special handling for vorbis.

It is no longer needed for Ogg and messes up WebM output.

14 years agoFix sdi sample count to be recomputed on each iteration.
Dan Dennedy [Wed, 16 Jun 2010 04:56:43 +0000 (21:56 -0700)]
Fix sdi sample count to be recomputed on each iteration.

14 years agoProvide sensible defaults for HD SDI.
Dan Dennedy [Wed, 16 Jun 2010 04:54:45 +0000 (21:54 -0700)]
Provide sensible defaults for HD SDI.

Also, now blanking may also be set to 0 or 1 to be consistent with other
boolean MLT properties.

14 years agoFix a few compiler warnings in jackrack.
Dan Dennedy [Tue, 15 Jun 2010 07:02:56 +0000 (00:02 -0700)]
Fix a few compiler warnings in jackrack.

14 years agoTell git to ignore swig-generated .cxx files.
Dan Dennedy [Thu, 10 Jun 2010 02:01:53 +0000 (19:01 -0700)]
Tell git to ignore swig-generated .cxx files.

14 years agoUse rint instead of roundf to suppress compiler warnings.
Dan Dennedy [Tue, 8 Jun 2010 05:49:32 +0000 (22:49 -0700)]
Use rint instead of roundf to suppress compiler warnings.

14 years agoCleanup affine and fix a glitch that may appear.
Dan Dennedy [Tue, 8 Jun 2010 05:29:02 +0000 (22:29 -0700)]
Cleanup affine and fix a glitch that may appear.

14 years agoFix the repeat/mirror cycle to be relative to start of transition.
Dan Dennedy [Tue, 8 Jun 2010 03:40:40 +0000 (20:40 -0700)]
Fix the repeat/mirror cycle to be relative to start of transition.

Before, it was relative to start of timeline, and this meant geometry
animations would start at unpredictable locations.

14 years agoFix infinite loop when obscure blocking <1.
Dan Dennedy [Tue, 8 Jun 2010 02:32:22 +0000 (19:32 -0700)]
Fix infinite loop when obscure blocking <1.

Patch from Till Theato.

14 years agoMake bloxblur faster and simpler.
Dan Dennedy [Fri, 4 Jun 2010 05:58:35 +0000 (22:58 -0700)]
Make bloxblur faster and simpler.

It no longer does YUV-RGB-YUV conversion; just operates in RGB.

14 years agoFix superficial cpu usage with melt progress option (used by Kdenlive).
Dan Dennedy [Thu, 3 Jun 2010 07:25:59 +0000 (00:25 -0700)]
Fix superficial cpu usage with melt progress option (used by Kdenlive).

14 years agoRevert "Fix a memory leak registering frei0r services."
Dan Dennedy [Thu, 3 Jun 2010 05:50:32 +0000 (22:50 -0700)]
Revert "Fix a memory leak registering frei0r services."

This reverts commit e82c4054090ed764a41331dc46deb1e02ee11edc.

14 years agoRevise affine to use interpolation and sub-pixel positioning.
Dan Dennedy [Thu, 3 Jun 2010 05:42:35 +0000 (22:42 -0700)]
Revise affine to use interpolation and sub-pixel positioning.

14 years agoMerge branch 'kdenlivetitle' of git://github.com/j-b-m/mlt
Dan Dennedy [Tue, 1 Jun 2010 01:27:38 +0000 (18:27 -0700)]
Merge branch 'kdenlivetitle' of git://github.com/j-b-m/mlt

14 years agoMerge branch 'master' of dennedy.org:git/mltframework.org/mlt
Dan Dennedy [Tue, 1 Jun 2010 01:20:24 +0000 (18:20 -0700)]
Merge branch 'master' of dennedy.org:git/mltframework.org/mlt

14 years agoFix build on BSD with VDPAU (Alberto Villa).
Dan Dennedy [Tue, 1 Jun 2010 01:20:13 +0000 (18:20 -0700)]
Fix build on BSD with VDPAU (Alberto Villa).

14 years agoFix compilation (Qt Xml linking)
j-b-m [Sun, 30 May 2010 16:33:50 +0000 (17:33 +0100)]
Fix compilation (Qt Xml linking)

14 years agoFix compilation warning undeclared av_get_pix_fmt().
Dan Dennedy [Fri, 28 May 2010 14:50:29 +0000 (07:50 -0700)]
Fix compilation warning undeclared av_get_pix_fmt().

14 years agoFix a memory leak registering frei0r services.
Dan Dennedy [Fri, 28 May 2010 14:43:30 +0000 (07:43 -0700)]
Fix a memory leak registering frei0r services.

14 years agoFix build on non-OSX due to missing parameter name.
Dan Dennedy [Thu, 20 May 2010 17:53:54 +0000 (10:53 -0700)]
Fix build on non-OSX due to missing parameter name.

14 years agoFix leaking OS X Cocoa objects in SDL consumers.
Dan Dennedy [Tue, 18 May 2010 22:50:08 +0000 (15:50 -0700)]
Fix leaking OS X Cocoa objects in SDL consumers.

14 years agoFix leaking OS X Cocoa objects in SDL consumers.
Dan Dennedy [Tue, 18 May 2010 18:46:15 +0000 (11:46 -0700)]
Fix leaking OS X Cocoa objects in SDL consumers.

14 years agoMerge branch 'interlaced_title' of git://github.com/gmarco/mlt
Dan Dennedy [Mon, 17 May 2010 06:30:43 +0000 (23:30 -0700)]
Merge branch 'interlaced_title' of git://github.com/gmarco/mlt

14 years agoEnable flushing the encoder buffers.
Dan Dennedy [Mon, 17 May 2010 06:23:27 +0000 (23:23 -0700)]
Enable flushing the encoder buffers.

This improves reliability of encoding especially multithreaded x264
(remove ugly hack).

14 years agoFix deprecated function and remove unused variable.
Dan Dennedy [Mon, 17 May 2010 02:46:49 +0000 (19:46 -0700)]
Fix deprecated function and remove unused variable.

14 years agoMultitrack audio encoding continued.
Dan Dennedy [Sun, 16 May 2010 18:03:32 +0000 (11:03 -0700)]
Multitrack audio encoding continued.

This version changes the configuration and remapping. The number of
channels per output audio track is set using "channels.<N>" properties
on the avformat consumer, where <N> is a 0-based numeric representing
the output track. At this time, all tracks must share all other
attributes such as sample rate, codec, and bitrate.

As for the remapping, this attempts to reuse the meta.map.audio...
properties set on the producers as used with the sdi consumer. One
exception: to skip or silence channels at the beginning tracks or in the
middle, you must add additional map properties to the end of the list to
simulate these "gaps."

14 years agoAdd multitrack audio encoding.
Dan Dennedy [Thu, 13 May 2010 04:07:09 +0000 (21:07 -0700)]
Add multitrack audio encoding.

This is a check point for the first working version. Changes are
forthcoming.

14 years agointerlaced titles
Marco Gittler [Fri, 7 May 2010 20:37:26 +0000 (22:37 +0200)]
interlaced titles

14 years agoRemove hardcoded 32-bit arch in Perl binding (2995474).
Dan Dennedy [Sun, 2 May 2010 19:18:39 +0000 (12:18 -0700)]
Remove hardcoded 32-bit arch in Perl binding (2995474).

14 years agoFix missing PIC flags for bindings (2931009)
Dan Dennedy [Sun, 2 May 2010 19:10:06 +0000 (12:10 -0700)]
Fix missing PIC flags for bindings (2931009)

Also, use g++ for linking bindings because some systems (OS X) do not
otherwise know to link with libstdc++.

14 years agoFix white artifacts in image (2972137)
Dan Dennedy [Mon, 26 Apr 2010 04:31:44 +0000 (21:31 -0700)]
Fix white artifacts in image (2972137)

Also applies to Kdenlive bug 1509.

14 years agoFix regression in previous commit.
Dan Dennedy [Mon, 26 Apr 2010 00:54:47 +0000 (17:54 -0700)]
Fix regression in previous commit.

14 years agoFix bad stride in yuv422 due to non-even width requests.
Dan Dennedy [Mon, 26 Apr 2010 00:27:55 +0000 (17:27 -0700)]
Fix bad stride in yuv422 due to non-even width requests.

14 years agoUpdate ChangeLog for v0.5.4.
Dan Dennedy [Tue, 20 Apr 2010 04:32:40 +0000 (21:32 -0700)]
Update ChangeLog for v0.5.4.

14 years agoSet version to 0.5.4.
Dan Dennedy [Tue, 20 Apr 2010 04:31:52 +0000 (21:31 -0700)]
Set version to 0.5.4.

14 years agoAdd v0.5.4 release notes.
Dan Dennedy [Tue, 20 Apr 2010 04:30:33 +0000 (21:30 -0700)]
Add v0.5.4 release notes.

14 years agoImprove error handling on video decode failure (kdenlive-1553).
Dan Dennedy [Tue, 20 Apr 2010 03:37:53 +0000 (20:37 -0700)]
Improve error handling on video decode failure (kdenlive-1553).

14 years agoOnly use newish version of libswcale.
Dan Dennedy [Sun, 18 Apr 2010 07:36:03 +0000 (00:36 -0700)]
Only use newish version of libswcale.

Some early revisions of 0.7.1 would cause garbage on last column of image
with non-even width.

14 years agoFix color producer not setting real_wdith and _height.
Dan Dennedy [Sun, 18 Apr 2010 02:22:45 +0000 (19:22 -0700)]
Fix color producer not setting real_wdith and _height.

14 years ago--disable-mmx, --disable-sse should also disable sse2.
Dan Dennedy [Fri, 16 Apr 2010 02:35:41 +0000 (19:35 -0700)]
--disable-mmx, --disable-sse should also disable sse2.

14 years agoAdd C# bindings.
Dan Dennedy [Thu, 8 Apr 2010 08:12:48 +0000 (01:12 -0700)]
Add C# bindings.

Thank you to Steeve Descarpentries for the initial contribution.

14 years agoAdd automatic driver configuration to sdi consumer.
Dan Dennedy [Thu, 8 Apr 2010 05:43:58 +0000 (22:43 -0700)]
Add automatic driver configuration to sdi consumer.

This uses the MLT profile to determine the configuration values: video
buffer size, audio buffer size, video frame mode (resolution, frame
rate), video data mode (8 bit or v210), number of audio channels, audio
sampling rate, audio sample size. It does _not_ set the clock source or
the number of buffers for audio and video.

14 years agoBugfix memory leak with producer consumer (2976110).
Dan Dennedy [Wed, 7 Apr 2010 03:34:15 +0000 (20:34 -0700)]
Bugfix memory leak with producer consumer (2976110).

Also kdenlive bug 1197.

14 years agoBetter signal previous/next frames not needed.
Dan Dennedy [Wed, 7 Apr 2010 03:32:43 +0000 (20:32 -0700)]
Better signal previous/next frames not needed.

14 years agoFix version number in release notes :(
Dan Dennedy [Thu, 11 Mar 2010 06:58:40 +0000 (22:58 -0800)]
Fix version number in release notes :(

14 years agoUpdate ChangeLog for v0.5.2.
Dan Dennedy [Thu, 11 Mar 2010 06:40:33 +0000 (22:40 -0800)]
Update ChangeLog for v0.5.2.

14 years agoSet version to 0.5.2.
Dan Dennedy [Thu, 11 Mar 2010 06:38:16 +0000 (22:38 -0800)]
Set version to 0.5.2.

14 years agoAdd v0.5.2 release notes.
Dan Dennedy [Thu, 11 Mar 2010 06:37:42 +0000 (22:37 -0800)]
Add v0.5.2 release notes.

14 years agoImprove performance of sdi consumer (patch from BCE).
Dan Dennedy [Thu, 11 Mar 2010 05:24:01 +0000 (21:24 -0800)]
Improve performance of sdi consumer (patch from BCE).

consumer_SDIstream.c
- convertYCBCRtoRGB: different calculation

sdi_generator.h
- SDIAUDIO transmitter event definitions

sdi_generator.c
- pack changed to pack8 instead of packv210
- Transmitter events are checked only once a frame
- create_HD_SDI_Line and create_SD_SDI_Line do not calculate the current
position in the video_buffer for each sample. Now it is done once a
line.

14 years agoFix MltFilteredProducer not building.
Dan Dennedy [Thu, 11 Mar 2010 04:05:51 +0000 (20:05 -0800)]
Fix MltFilteredProducer not building.

14 years agoFix regressions playing all frames at end (kdenlive-1207).
Dan Dennedy [Wed, 3 Mar 2010 07:39:27 +0000 (23:39 -0800)]
Fix regressions playing all frames at end (kdenlive-1207).

14 years agoFix recent regression on failure to load file.
Dan Dennedy [Wed, 3 Mar 2010 06:33:12 +0000 (22:33 -0800)]
Fix recent regression on failure to load file.

14 years agoFix minor regression on previous commit to sdl_preview.
Dan Dennedy [Mon, 1 Mar 2010 03:28:18 +0000 (19:28 -0800)]
Fix minor regression on previous commit to sdl_preview.

14 years agoMake swscale the preferred rescale filter.
Dan Dennedy [Sun, 28 Feb 2010 20:46:05 +0000 (12:46 -0800)]
Make swscale the preferred rescale filter.

Should be safe now since the default compile-time max resolution for
libswscale was increased to 5120 for non-ppc systems as of May, 2009.
Also, because I added the initialization and range tests.

14 years agoAdd resolution as init arg to libswscale filters.
Dan Dennedy [Sun, 28 Feb 2010 20:42:24 +0000 (12:42 -0800)]
Add resolution as init arg to libswscale filters.

14 years agoFix a couple of compile warnings.
Dan Dennedy [Sun, 28 Feb 2010 19:23:21 +0000 (11:23 -0800)]
Fix a couple of compile warnings.

14 years agoFix crash on reading uncompressed (rawvideo).
Dan Dennedy [Sat, 27 Feb 2010 19:55:50 +0000 (11:55 -0800)]
Fix crash on reading uncompressed (rawvideo).

14 years agoReport scaling method in debug logging.
Dan Dennedy [Sat, 27 Feb 2010 08:15:44 +0000 (00:15 -0800)]
Report scaling method in debug logging.

14 years agoFix offset to alpha component on OS X.
Dan Dennedy [Sat, 27 Feb 2010 08:15:13 +0000 (00:15 -0800)]
Fix offset to alpha component on OS X.