summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-12-17add blend mode testsHEADmasterBenjamin Otte62-0/+195
2009-12-17add blend modesBenjamin Otte2-14/+36
also up cairo requirement to >= 1.9.4
2009-11-27Fix compile warnings in vivifiedJohan Gill1-32/+39
2009-11-25Remove -wlogical-opBenjamin Otte1-1/+1
Apparently gcc 4.4 is happy about warning about strchr and friends that use builtin glibc macros again. So remove this warning for the sake of sanity.
2009-07-17Decode whole buffersBenjamin Otte1-1/+1
2009-07-17Bug 22803 - Make header conform to implementationTim Mooney1-1/+1
Fix swfdec_as_object_add_variable() prototype
2009-05-17update warning flags for gcc 4.4Benjamin Otte1-3/+1
2009-03-10fix crash in beginBitmapFill when bitmap is NULLBenjamin Otte1-1/+1
2009-03-10add a new crasher testBenjamin Otte10-0/+14
2008-12-28fix downsample file to a) work and b) not emit warningsBenjamin Otte1-7/+5
2008-12-28fix build for --disable-gtk-docBenjamin Otte1-1/+2
2008-12-23add more warning flags for gcc 4.4Benjamin Otte1-1/+1
2008-12-23fix warning flagsBenjamin Otte1-1/+1
-Waddress is part of -Wall and -Wno-multichar disables a warning (oops)
2008-12-21Merge branch '0.8'Benjamin Otte2-3/+23
Conflicts: NEWS configure.ac
2008-12-21back to development0.8Benjamin Otte1-1/+1
2008-12-21release 0.8.40.8.4Benjamin Otte1-1/+1
2008-12-21update for 0.8.4Benjamin Otte1-0/+11
2008-12-19improve Cairo testBenjamin Otte1-3/+12
- check against runtime cairo version, not compile-time - limit tests to Cairo 1.8 as 1.9 changed rendering output slightly which makes tests fail
2008-12-16Merge branch '0.8'Benjamin Otte10-12/+209
2008-12-16Revert "add support for H264 video"Benjamin Otte7-89/+18
This reverts commit cc5ad40ffad9d6b7f4d66363bb84f9e4668e6daa.
2008-12-16Revert "don't create a new VideoDecoder after seeks"Benjamin Otte1-4/+0
This reverts commit c42092866fb29b4dd2d8ad8850f007990fd69148.
2008-12-16Revert "make creating audio decoders take codec data, too"Benjamin Otte8-14/+10
This reverts commit 4742a6015fce9f5dc0f61b4399b32d2bc88cefe4.
2008-12-16add various hacks so we never remove the video decoder.Benjamin Otte1-11/+4
Removing the video decoder would put H264 video decoding into FAIL state.
2008-12-16add a hack that makes codec setup data survive seeksBenjamin Otte1-0/+12
2008-12-16implement AAC codec-data supportBenjamin Otte1-1/+30
2008-12-16implement AAC supportBenjamin Otte1-0/+18
2008-12-16add codec data API to the audio decoder, tooBenjamin Otte2-0/+43
2008-12-16fix small bugs in the H264 GStreamer implementationBenjamin Otte2-4/+8
2008-12-16make the GStreamer decoder handle H264Benjamin Otte3-0/+36
2008-12-16decode H264 using the new APIBenjamin Otte1-0/+29
2008-12-16add API necessary for H264Benjamin Otte2-0/+39
2008-12-01Merge commit 'mental/copyPixels-alpha-nomask'Benjamin Otte10-4/+6
2008-12-01make swfdec_as_object_peek_variable() return the value for getters, tooBenjamin Otte1-2/+1
2008-12-01remove previously added test for Flash 6Benjamin Otte2-0/+0
This test fails in Flash 6 as the rendered area is wrong.
2008-12-01fix testsuite to reflect new API, tooBenjamin Otte3-4/+7
2008-11-23fix omitted mask handlingMenTaLguY1-1/+1
2008-11-23demonstrate incorrect copyPixels behaviorMenTaLguY9-3/+5
2008-11-21redo socket writing APIBenjamin Otte9-59/+136
previously the SwfdecSocket was responsible for keeping a queue of data to be written. Now the queue is supposed to be kept inside Swfdec. This has 2 advantages: a) The API maps nicely to async I/O, the code in external apps can be reduced. b) The RTMP code can assemble data on demand and does not have to queue all of the data in random order inside the socket. This will liekly only effect the written data on clogged networks.
2008-11-20add a test for the just-fixed regressionBenjamin Otte10-0/+17
2008-11-20fix regression with color transforms on opaque images (bug #18626)Benjamin Otte1-1/+2
2008-11-20Merge branch '0.8'Benjamin Otte0-0/+0
2008-11-20zero memory when using it in PARiccardo Magliocchetti1-2/+2
2008-11-18add swfdec_as_object_enumerate()Benjamin Otte3-25/+53
This functionality seems to be used more often, so make it a nice function
2008-11-18fix BitmapData.fillRect and add test for itMenTaLguY10-2/+20
2008-11-17add naive implementation of BitmapData.fillRectBenjamin Otte1-8/+27
2008-11-14g_strcasecmp => g_ascii_strcasecmpBenjamin Otte2-3/+3
The first symbol is deprecated. I'm not sure this works for caseinsensitive sorting, but there's no test indicating otherwise.
2008-11-14g_strncasecmp => g_ascii_strncasecmpBenjamin Otte1-38/+38
The first symbol is deprecated. And all characters were ASCII anyway.
2008-11-12Merge branch '0.8'Benjamin Otte10-0/+16
Conflicts: swfdec/swfdec_bitmap_data.c
2008-11-12fix BitmapData.copyPixels crashersBenjamin Otte1-7/+19
2008-11-12add test for copyPixels crashersBenjamin Otte10-0/+16