summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2009-01-28Revert "mpegdemux: do not skip pes packets that we think are encrypted"Zaheer Merali2-2/+13
This reverts commit d3e4e5598f6c3db444d0014597d383ed35a02998.
2009-01-28mpegdemux: do not skip pes packets that we think are encryptedJosep Torra2-13/+2
pes packets that claim to be encrypted may not be so, so treat as normal. Just log the flags.
2009-01-24Build the modplug plugin against the modplug library and remove our copyHans de Goede46-21315/+28
Always build the modplug plugin against the system modplug library and remove our own copy. Using the system version has advantages if security issues or other critical bugs are found in libmodplug and our own copy wasn't really maintained anyway. Also our copy only contained some patches to use GLib types and functions. Fixes bug #568837.
2009-01-23Add more to the gitignoresJan Schmidt2-0/+9
2009-01-23Make RGB masks unsigned in rawvideoparseJan Schmidt1-4/+4
Allow the full range of 32 bit masks for RGBA/RGB data by making sure the mask properties are unsigned.
2009-01-23Add README with midi related links.Stefan Kost1-0/+3
2009-01-23Log aac details found in codec_data.Stefan Kost2-0/+15
2009-01-23Configure byte order for EXIF. Fixes #568704Stefan Kost4-7/+82
Exif blocks can be in differnt byte orders. Add an element property to select wich one should be written.
2009-01-23Rename audioresample files and types to legacyresampleSebastian Dröge96-486/+1054
Finish the move/rename of audioresample to legacyresample to prevent any confusion.
2009-01-23Remove speexresample from -bad, it's in -baseSebastian Dröge12-3413/+0
2009-01-23Send BYE packets immediatly for small sessionsWim Taymans1-0/+4
When the number of participants is less than 50, the RFC allows for sending the BYE packet immediatly instead of using the regular BYE timeout. Fixes #567828.
2009-01-23Add seeking support to mmssrc. Fixes bug #469930.Hans de Goede3-62/+200
Add proper seeking support to mmssrc and clean up some code. This requires libmms >= 0.4.
2009-01-23Link modplug plugin with -lm. Fixes bug #568483.Brian Cameron1-1/+1
2009-01-23Fix build on Solaris. Fixes bug #568480.Brian Cameron2-4/+4
Fix linking on Solaris by checking for the nsl and socket libraries which are needed for socket() and gethostbyname(). Don't initialize some fields of struct mh to NULL/0, they're already set to NULL/0 by a memset(). Also this fields don't exist on Solaris.
2009-01-23Store all partitions & primer packs in memory for faster accessSebastian Dröge4-128/+213
Store all partitions & primer packs in memory for faster access. This is later needed for fast seeking. Pre-fill the list of partitions with the content of the random index pack. Don't parse metadata of an partition twice.
2009-01-22Update common snapshot.Stefan Kost1-0/+0
2009-01-22Update config.h for development.Wim Taymans1-2/+2
2009-01-22Fix pre-commit hookSebastian Dröge1-0/+0
2009-01-22Add support for ECMA arrays in script tags. Fixes bug #567965.Jan Urbanski1-0/+23
Add support for ECMA arrays in script tags. This fixes seeking on some files that have the seek table stored inside an ECMA array instead of the normal array.
2009-01-22Unlock the jitterbuffer before pushing out the packet-lost events.Wim Taymans1-5/+8
Move some code before we do the unlock to make the jitterbuffer state consistent while we are unlocked.
2009-01-22Fix UL for DTS and MPEG2 layer 1Sebastian Dröge1-2/+2
2009-01-22Add support for AAC audioSebastian Dröge1-0/+10
2009-01-22Store MXF metadata in a hash table, keyed by UIDSebastian Dröge7-835/+819
Store the MXF metadata in a hash table, keyed by the instance UID. This simplifies resolval of the metadata and makes looping over all metadata sets unnecessary in most cases. Additionally parse metadata always. If we already have a metadata set with the same UID replace it only if the new metadata set is from a later offset. This fixes metadata parsing of files where following partitions don't have a complete copy of the previous metadata.
2009-01-22Build the random index pack while parsingSebastian Dröge2-10/+40
If the file contains no random index pack or just an invalid one build the random index pack while parsing.
2009-01-22Update copyrights for 2009Sebastian Dröge25-25/+25
2009-01-22Simplify parsing of UL/UUID arraysSebastian Dröge6-1138/+640
Simplify parsing of UL/UUID arrays by abstracting it into a separate function.
2009-01-22Implement parsing of DMS1 (SMPTE S380M)Sebastian Dröge12-187/+7261
2009-01-22Disable the filter plugin from the buildSebastian Dröge1-2/+0
The filter plugin only contains a limited IIR filter element which is now obsoleted by the audioiirfilter element from gst-plugins-good/audiofx.
2009-01-22Back to devel -> 0.10.10.1Jan Schmidt1-1/+1
2009-01-22Install and use pre-commit indentation hook from commonEdward Hervey2-0/+7
2009-01-21Revert "add audiobuffer to the build"Andy Wingo1-2/+0
This reverts commit 1c6ac170b9f218c673c0daaf5c568c6000a37fc3.
2009-01-21add audiobuffer to the buildAndy Wingo1-0/+2
* configure.ac: Add audiobuffer to the build.
2009-01-21autogen.sh : Use git submoduleEdward Hervey1-8/+5
2009-01-19Release 0.10.10RELEASE-0_10_10GIT_CONVERSIONJan Schmidt75-299/+427
Original commit message from CVS: Release 0.10.10
2009-01-19Update .po filesJan Schmidt30-437/+979
Original commit message from CVS: Update .po files
2009-01-09configure.ac: 0.10.9.3 pre-releaseJan Schmidt2-1/+6
Original commit message from CVS: * configure.ac: 0.10.9.3 pre-release
2009-01-09gst/mpegdemux/gstmpegtsdemux.c: Don't forward duration requests in BYTES, ↵David Schleef2-0/+21
since the returned value doesn't mean anyth... Original commit message from CVS: * gst/mpegdemux/gstmpegtsdemux.c: Don't forward duration requests in BYTES, since the returned value doesn't mean anything. Fixes #566959
2009-01-09gst/qtmux/gstqtmuxmap.c: Add video/x-qt-part and video/x-m4-part to caps so ↵David Schleef2-2/+9
schroenc/schroparse can use it. Fixes #5... Original commit message from CVS: * gst/qtmux/gstqtmuxmap.c: Add video/x-qt-part and video/x-m4-part to caps so schroenc/schroparse can use it. Fixes #566958
2009-01-09ext/resindvd/resindvdsrc.c: Additional patch for resin fixes time-based ↵Jan Schmidt2-21/+101
seeking in titles that don't start at sector ... Original commit message from CVS: * ext/resindvd/resindvdsrc.c: Additional patch for resin fixes time-based seeking in titles that don't start at sector 0 in the VTS, and fixes interpretation of the cell elapsed time, so that it reports the correct time after the seek completes. Really fixes #566957.
2009-01-08ext/ladspa/search.c: Avoid searching (null) paths or crashing on platforms ↵Brian Cameron2-2/+16
where printing a Original commit message from CVS: Based on Patch by: Brian Cameron <brian dot cameron at sun dot com> * ext/ladspa/search.c: (LADSPAPluginSearch): Avoid searching (null) paths or crashing on platforms where printing a NULL string segfaults. Fixes #567004.
2009-01-08ext/resindvd/: Add support for time based seeking.Jan Schmidt5-11/+121
Original commit message from CVS: * ext/resindvd/resindvdbin.c: * ext/resindvd/resindvdsrc.c: * ext/resindvd/resindvdsrc.h: * ext/resindvd/rsnaudiomunge.c: Add support for time based seeking. Make setting dvd:// reset to the default device. Make the 'audiomunge' element send any new segment start before the 'gap filler' buffer it generates, and any segment closes after. Fixes: #566957
2009-01-08ext/ladspa/gstladspa.c: Add plugin dependency for the LADSPA plugin directories.Sebastian Dröge2-0/+11
Original commit message from CVS: * ext/ladspa/gstladspa.c: (plugin_init): Add plugin dependency for the LADSPA plugin directories. Fixes bug #566878.
2009-01-06tests/check/Makefile.am: Dist test headers for amr and aac parsers.Jan Schmidt2-3/+7
Original commit message from CVS: * tests/check/Makefile.am: Dist test headers for amr and aac parsers. Remove leftover lines mentioned speexresample tests.
2009-01-06sys/acmmp3dec/Makefile.am: Fix typo in the opposite way to give the plugin a ↵Michael Smith2-5/+10
sensible name. Original commit message from CVS: * sys/acmmp3dec/Makefile.am: Fix typo in the opposite way to give the plugin a sensible name.
2009-01-06sys/acmmp3dec/Makefile.am: Fix typo in the makefile target preventing disting.Jan Schmidt2-1/+6
Original commit message from CVS: * sys/acmmp3dec/Makefile.am: Fix typo in the makefile target preventing disting.
2009-01-05Remove AppSrc/AppSink that are moving to -base. Partially fixes #564421Jan Schmidt9-222/+37
Original commit message from CVS: * configure.ac: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-bad-plugins-docs.sgml: * docs/plugins/gst-plugins-bad-plugins-sections.txt: * docs/plugins/inspect/plugin-app.xml: * examples/Makefile.am: * examples/app/.cvsignore: * examples/app/Makefile.am: * examples/app/appsink-src.c: * examples/app/appsrc-ra.c: * examples/app/appsrc-seekable.c: * examples/app/appsrc-stream.c: * examples/app/appsrc-stream2.c: * examples/app/appsrc_ex.c: * gst-libs/gst/Makefile.am: * gst-libs/gst/app/.cvsignore: * gst-libs/gst/app/Makefile.am: * gst-libs/gst/app/gstapp-marshal.list: * gst-libs/gst/app/gstappbuffer.c: * gst-libs/gst/app/gstappbuffer.h: * gst-libs/gst/app/gstappsink.c: * gst-libs/gst/app/gstappsink.h: * gst-libs/gst/app/gstappsrc.c: * gst-libs/gst/app/gstappsrc.h: * gst/app/Makefile.am: * gst/app/gstapp.c: Remove AppSrc/AppSink that are moving to -base. Partially fixes #564421
2009-01-05gst/mpegdemux/mpegtspacketizer.c: Guard interval is 4 if descriptor part ↵Zaheer Abbas Merali2-2/+7
shows binary 11 (3 not 4). Original commit message from CVS: * gst/mpegdemux/mpegtspacketizer.c: Guard interval is 4 if descriptor part shows binary 11 (3 not 4).
2009-01-05gst/mpegdemux/gstmpegdesc.h: Fix up satellite delivery subsystem defs.Zaheer Abbas Merali2-1/+6
Original commit message from CVS: * gst/mpegdemux/gstmpegdesc.h: Fix up satellite delivery subsystem defs.
2009-01-05gst/mpegdemux/gstmpegdesc.h: Fix up terrestrial delivery system descriptor defs.Zaheer Abbas Merali2-7/+13
Original commit message from CVS: * gst/mpegdemux/gstmpegdesc.h: Fix up terrestrial delivery system descriptor defs. They should be shifted otherwise wrong values are seen.
2009-01-05gst/mxf/: "Generation UID" and "This Generation UID" are different so handle ↵Sebastian Dröge5-21/+153
them different. Also both are not part o... Original commit message from CVS: * gst/mxf/Makefile.am: * gst/mxf/mxfdemux.c: * gst/mxf/mxfmetadata.c: (mxf_metadata_handle_tag), (mxf_metadata_preface_handle_tag), (mxf_metadata_identification_handle_tag), (mxf_metadata_content_storage_handle_tag), (mxf_metadata_essence_container_data_handle_tag), (mxf_metadata_generic_package_handle_tag), (mxf_metadata_track_handle_tag), (mxf_metadata_sequence_handle_tag), (mxf_metadata_structural_component_handle_tag), (mxf_metadata_generic_descriptor_handle_tag), (mxf_metadata_locator_handle_tag), (mxf_metadata_locator_class_init): * gst/mxf/mxfmetadata.h: "Generation UID" and "This Generation UID" are different so handle them different. Also both are not part of every metadata type.