gstreamer/ChangeLog
Khaled Mohammed 2301711e91 Fixed sample/TypeFind.cs
git-svn-id: svn://anonsvn.mono-project.com/source/branches/abock/gstreamer-sharp@64526 e3ebcda4-bce8-0310-ba0a-eca2169e7518
2006-08-30 00:46:32 +00:00

243 lines
8.2 KiB
Plaintext

2006-08-29 Khaled Mohammed <khaled.mohammed@gmail.com>
* sample/MetaData.cs: a sample file which extracts tag information
from media files and displays them to console.
* sample/TypeFind.cs: fixed to make it work with the new DynamicSignal
class.
2006-08-25 Khaled Mohammed <khaled.mohammed@gmail.com>
* sample/QueueExample.cs: a sample file showcasing
use of the queue element
* gstreamer-sharp/Element.custom: added static LinkMany and UnlinkMany
functions
2006-08-20 Khaled Mohammed <khaled.mohammed@gmail.com>
* gstreamer-sharp/Buffer.custom: added Ref(), Unref() and Refcount()
functionality
* gstreamer-sharp/Gstreamer.metadata: suppressed auto generation of
few functions to remove build warnings.
* gstreamer-sharp/Pad.custom: added AddBufferProbe() and AddDataProbe()
* tests: Added few more tests.
2006-08-11 Khaled Mohammed <khaled.mohammed@gmail.com>
* gstreamer-sharp/Object.custom: overriden Dispose() function.
* gstreamer-sharp/tests: added more tests
2006-08-05 Khaled Mohammed <khaled.mohammed@gmail.com>
* gstreamer-sharp/GStreamer.metadata: added a new xml node to hide
generation of Refcount by GAPI.
* gstreamer-sharp/Object.custom: added Refcount property there.
* tests/ElementTest.cs: Adding test to Add/Remove Pad.
2006-08-03 Khaled Mohammed <khaled.mohammed@gmail.com>
* gstreamer-sharp/DynamicSignal.cs: Added the support for Retval.
Also changed the design to use only managed code.
* gstreamer-sharp/plugins-base/*: Changed the code to use the new
DynamicSignal class. Got rid of DynamicSignalArgs and is using
GLib.SignalArgs.
* tests/PipelineTest.cs: NUnit Test Suite for Pipeline. Most of
the tests are duplicate of the c test suite.
2006-07-13 Aaron Bockover <aaron@abock.org>
* gstreamer-sharp/BindingHelper.cs: Static helper class to assist
in making element bindings (delegate manipulation/invocation)
* gstreamer-sharp/DynamicSignal.cs: Updated DynamicSignalArgs so they
can more easily be derived
* gstreamer-sharp/Makefile.am: Updated build
* sample/HelloWorld.cs: More cleaning
* sample/Makefile.am:
* sample/TypeFind.cs: Added typefind sample
* gstreamer-sharp.mdp: Updated MonoDevelop project
* gstreamer-sharp/plugins-base/DecodeBin.cs: Signal support rewritten
to use BindingHelper/DynamicSignal
* gstreamer-sharp/plugins-base/TypeFindElement.cs: New typefind
element wrapper using BindingHelper/DynamicSignal
* gstreamer-sharp/Element.custom: Fixed property getter/setter methods
and added indexer wrapper for property lookup for syntax convenience
2006-07-12 Aaron Bockover <aaron@abock.org>
* sample/HelloWorld.cs: Cleaned up, works with new dynamic signal stuff
* gstreamer-sharp.mdp: Updated MonoDevelop project
* gstreamer-sharp/glue/dynamicsignal.c:
* gstreamer-sharp/DynamicSignal.cs: Added DynamicSignal support for
runtime GObject signal binding
* gstreamer-sharp/glue/Makefile.am:
* gstreamer-sharp/Makefile.am: Updated build
* gstreamer-sharp/Element.custom: Removed old DynamicSignal
stuff and added pass-thru/proxy Connect/Disconnect methods on
top of GLib.DynamicSignal
* gstreamer-sharp/DynamicSignalHandlerGenerator.cs:
* gstreamer-sharp/DynamicSignalMarshalHandler.cs: Removed
* gstreamer-sharp/gstreamer-sharp.dll.config.in: Updated maps, removed
old 0.8 maps
2006-07-12 Aaron Bockover <aaron@abock.org>
* gstreamer-sharp.mds:
* gstreamer-sharp.mdp: Updated MonoDevelo project/solution
* source/gstreamer-sharp-source.xml: Cleaned up a bit
* sample/DecodeBinTranscoder.cs: Updated to reflect renaming of
Clock.GstSecond to Clock.Second, etc.
* gstreamer-sharp/glue/clock.c: Added gstsharp_gst_clock_get_time_none
and gstsharp_gst_clock_time_is_valid
* gstreamer-sharp/Clock.custom: Added bindings for new clock glue
and renamed GstNSecond to NSecond (and friends)
2006-06-21 Khaled Mohammed <khaled.mohammed@gmail.com>
* gstreamer-sharp/DynamicSignalHandlerGenerator.cs: This class is
reponsible for generating a custom delegate class which supports
variable number of parameters.
* gstreamer-sharp/DyanmicSignalMarshalHandler.cs: This is an abstract
class and is derived by the new type generated by the Generator.
This class makes it easy for me to work with the new type.
* gstreamer-sharp/Element.custom: Added functions to add a custom signal,
a function which marshall's the signal parameters.
* sample/HelloWorld.cs: Added a sample to show the usuage of a custom signal.
2006-06-04 Khaled Mohammed <khaled.mohammed@gmail.com>
* gstreamer-sharp/glue/Bin.c: added this file to the source. It has only one
function which gives offset of *children in the C struct.
* gstreamer-sharp/glue/Makefile.am: added Bin.c to the list of C source that
must be compiled.
* tests/ElementTest.cs: added NUnit tests for Element class.
* tests/Makefile.am: added ElementTest.cs to the list of TestSuite
* tests/BinTest.cs: fixed the test for Bin.Children
2006-06-04 Michael Dominic K. <michaldominik@gmail.com>
* doc/gst-sharp-docs.zip:
* doc/gst-sharp-docs.tree: Removing, this is a left over from
something old (new prefix seems to be: gstreamer-sharp-).
* doc/en/Gst/Clock.xml: Fixing the docs to represent the change
introduced in the last commit.
2006-06-04 Michael Dominic K. <michaldominik@gmail.com>
* sample/DecodeBinTranscoder.cs: Fixing ambigious cast.
* gstreamer-sharp/glue/clock.c:
* gstreamer-sharp/Clock.custom: Changing the gint64 to guint64 and
long to ulong respectively. The clocktime (GstClockTime) is measured
in nanoseconds as unsigned long inside GStreamer.
This is introducing a small schizophrenia since some functions (such
as queries, seeks) take signed long (-1 to mark infinity or error).
This is the expected Gst behaviour.
Just sticking silently to long (instead of ulong) will bork us sooner
or later, especially for custom-build low level routines/elements.
Comments welcome.
2006-05-31 Michael Dominic K. <michaldominik@gmail.com>
* tests/PadTest.cs:
* tests/Makefile.am: Introducing a new test for Gst.Pad. All fixtures pass.
* tests/CapsTest.cs: Adding a new fixture for caps union testing (passes).
Fixing some code-style errors.
2006-05-30 Michael Dominic K. <michaldominik@gmail.com>
* README: Fixing a broken svn link to gtk-sharp sources.
* tests/CapsTest.cs:
* tests/Makefile.am: Introducing a new test for Gst.Caps. All fixtures pass.
2006-05-25 Aaron Bockover <aaron@abock.org>
* gstreamer-sharp/Gstreamer.metadata: Hide the Children property and
implement own version in Bin.custom to return an Element [] instead of
a GLib.List
* gstreamer-sharp/Bin.custom: Implement Bin.Children
* tests/BinTest.cs: wrote a test for Bin.Children
2006-05-25 Aaron Bockover <aaron@abock.org>
* gstreamer-sharp-0.10.pc.in: link against proper assembly
2006-05-21 Aaron Bockover <aaron@abock.org>
* gstreamer-sharp/plugins-base/DecodeBin.cs: Added a quick binding for
decodebin to test new-decoded-pad; probably is only a temporary solution
* sample/DecodeBinTranscoder.cs: Added a small decodebin sample
* sample/Makefile.am: Added build rules for decodebin sample
* gstreamer-sharp.mdp: Updated MonoDevelop project
* gstreamer-sharp/Makefile.am: Added plugins-base/DecodeBin.cs
2006-05-20 Aaron Bockover <aaron@abock.org>
* autogen.sh: Fixed a left over configure.in to configure.ac
* confiugre.ac: Added check foo for NUnit
* gstreamer-sharp.mdp:
* gstreamer-sharp.mds: Added MonoDevelop solution
* source/Makefile.am: Cleaned and fixed
* tests/ConsoleUi.cs:
* tests/ApplicationTest.cs:
* tests/BinTest.cs:
* tests/Makefile.am: Added NUnit test framework and a few tests for
Gst.Application and Gst.Bin
* gstreamer-sharp/CommonTags.cs:
* gstreamer-sharp/*.custom:
* gstreamer-sharp/glue/*.c: Cleaned up
* gstreamer-sharp/Application.cs: New application bindings; fixed
to work properly with GStreamer 0.10
* gstreamer-sharp/Version.cs: New Gst.Version class
* gstreamer-sharp/Makefile.am: Added Version.cs
* gstreamer-sharp/plugins-base/PlayBin.cs: Fixed and extended PlayBin
element binding with new (but not all) properties
* Makefile.am: Added tests
2006-05-19 Aaron Bockover <aaron@abock.org>
* gstreamer-sharp: Initial import to Mono Subversion; all prior work
has been done by Peter Johanson