summaryrefslogtreecommitdiffstats
path: root/ext/flac/gstflacdec.c
Commit message (Collapse)AuthorAgeFilesLines
* ext/flac/gstflacdec.c: (gst_flacdec_write): Actually, GST_PAD_CAPS() has ↵David Schleef2004-07-031-19/+17
| | | | | | | | | nothing to do with the logic. Original commit message from CVS: * ext/flac/gstflacdec.c: (gst_flacdec_class_init), (gst_flacdec_write): Actually, GST_PAD_CAPS() has nothing to do with the logic.
* ext/flac/gstflacdec.c: Set duration on output buffers. Fix logic mistake. ↵David Schleef2004-07-031-2/+4
| | | | | | | | (bug #144866) Original commit message from CVS: * ext/flac/gstflacdec.c: (gst_flacdec_write): Set duration on output buffers. Fix logic mistake. (bug #144866)
* fix a number of memleaksColin Walters2004-05-071-0/+18
| | | | | Original commit message from CVS: fix a number of memleaks
* don't mix tabs and spacesThomas Vander Stichele2004-03-151-96/+100
| | | | | Original commit message from CVS: don't mix tabs and spaces
* gst-indentThomas Vander Stichele2004-03-141-261/+252
| | | | | Original commit message from CVS: gst-indent
* Spelling fixJohan Dahlin2004-02-161-1/+1
| | | | | Original commit message from CVS: Spelling fix
* Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros with the code ↵David Schleef2004-02-041-12/+31
| | | | | | | | | | | | | | that they would expand to. Original commit message from CVS: Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros with the code that they would expand to. * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats), (gst_flacdec_get_src_query_types), (gst_flacdec_get_src_event_masks): * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats), (gst_gnomevfssrc_get_query_types), (gst_gnomevfssrc_get_event_mask):
* change NULL to (NULL) for GST_ELEMENT_ERRORThomas Vander Stichele2004-02-021-2/+2
| | | | | | Original commit message from CVS: change NULL to (NULL) for GST_ELEMENT_ERROR Make sure errors end with "."
* ext/flac/: Fix typosJeremy Simon2004-01-311-2/+2
| | | | | | | | | Original commit message from CVS: 2004-01-31 Jeremy Simon <jesimon@libertysurf.fr> * ext/flac/gstflacdec.c: (gst_flacdec_class_init): * ext/flac/gstflacdec.h: * ext/flac/gstflacenc.h: Fix typos
* GST_ELEMENT_ERRORThomas Vander Stichele2004-01-291-2/+2
| | | | | Original commit message from CVS: GST_ELEMENT_ERROR
* use new error signal and classificationThomas Vander Stichele2004-01-181-4/+3
| | | | | Original commit message from CVS: use new error signal and classification
* ext/flac/gstflacdec.c: length is already host endian, no need to convert. ↵Benjamin Otte2004-01-131-1/+1
| | | | | | | | | | | Fixes playback of tagged files on PPC. Original commit message from CVS: 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de> * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata): length is already host endian, no need to convert. Fixes playback of tagged files on PPC.
* ext/flac/gstflacdec.c: Finish flac decoder on EOS. See #116178.Ronald S. Bultje2004-01-031-2/+1
| | | | | | | | Original commit message from CVS: 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net> * ext/flac/gstflacdec.c: (gst_flacdec_loop): Finish flac decoder on EOS. See #116178.
* ext/: OS X fixes (see #126628).Ronald S. Bultje2004-01-031-1/+0
| | | | | | | | | | Original commit message from CVS: 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net> * ext/flac/gstflacdec.c: * ext/libpng/gstpngenc.h: * ext/mikmod/gstmikmod.h: OS X fixes (see #126628).
* Convert elements to use gst_pad_use_explicit_caps() where appropriate.David Schleef2004-01-021-1/+2
| | | | | Original commit message from CVS: Convert elements to use gst_pad_use_explicit_caps() where appropriate.
* Merge CAPS branchDavid Schleef2003-12-221-35/+22
| | | | | Original commit message from CVS: Merge CAPS branch
* distcheck fixesThomas Vander Stichele2003-12-141-1/+1
| | | | | Original commit message from CVS: distcheck fixes
* Use new tagging stuff to read and write flac metadata. Only handles ↵Christophe Fergeau2003-11-281-72/+16
| | | | | | | vorbiscomment tags, and not (older) id3v2 tags. Original commit message from CVS: Use new tagging stuff to read and write flac metadata. Only handles vorbiscomment tags, and not (older) id3v2 tags.
* flac mime type is audio/x-flac, not application/x-flacChristophe Fergeau2003-11-221-1/+1
| | | | | Original commit message from CVS: flac mime type is audio/x-flac, not application/x-flac
* Don't reset flac decoder if init hasn't been called on it first, the flac ↵Christophe Fergeau2003-11-221-8/+14
| | | | | | | | decoder crashed on me because of that Original commit message from CVS: Don't reset flac decoder if init hasn't been called on it first, the flac decoder crashed on me because of that
* + checking in plugin category changesLeif Johnson2003-11-161-1/+1
| | | | | Original commit message from CVS: + checking in plugin category changes
* Whheeee, FLAC ported to new system tooIain Holmes2003-11-011-8/+56
| | | | | Original commit message from CVS: Whheeee, FLAC ported to new system too
* /GstBuffer/GstData/ in the API where you can pass events. Fix the plugins to ↵Andy Wingo2003-10-081-3/+3
| | | | | | | deal with that. Fixes #113488. Original commit message from CVS: /GstBuffer/GstData/ in the API where you can pass events. Fix the plugins to deal with that. Fixes #113488.
* reverting error patch before making a branch.Thomas Vander Stichele2003-09-161-3/+1
| | | | | Original commit message from CVS: reverting error patch before making a branch.
* converted gst_element_error to new format in ext/ - gettext pendingBenjamin Otte2003-09-151-1/+3
| | | | | Original commit message from CVS: converted gst_element_error to new format in ext/ - gettext pending
* New mimetypes gone into effect today - this commit changes all old mimetypes ↵Ronald S. Bultje2003-07-061-3/+1
| | | | | | | over to the new mimetypes spec as descri... Original commit message from CVS: New mimetypes gone into effect today - this commit changes all old mimetypes over to the new mimetypes spec as described in the previous commit's document. Note: some plugins will break, some pipelines will break, expect HEAD to be broken or at least not 100% working for a few days, but don't forget to report bugs
* compatibility fix for new GST_DEBUG stuff.Benjamin Otte2003-06-291-19/+22
| | | | | | | | Original commit message from CVS: compatibility fix for new GST_DEBUG stuff. Includes fixes for missing includes for config.h and unistd.h I only ensured for plugins I can build that they work, so if some of them are still broken, you gotta fix them yourselves unfortunately.
* fix flacdec when src not connectedThomas Vander Stichele2003-06-281-18/+16
| | | | | Original commit message from CVS: fix flacdec when src not connected
* make flacdec work with unconnected src padThomas Vander Stichele2003-06-281-40/+48
| | | | | Original commit message from CVS: make flacdec work with unconnected src pad
* UNITS -> DEFAULTWim Taymans2003-05-241-17/+12
| | | | | Original commit message from CVS: UNITS -> DEFAULT
* Add metadata (only vorbis comment)Jeremy Simon2003-04-271-3/+116
| | | | | Original commit message from CVS: Add metadata (only vorbis comment)
* Change %lld, %llu to G_G[U]INT64_FORMAT globally. Fix bad pointer->integer ↵David Schleef2003-02-021-4/+4
| | | | | | | | conversion. Original commit message from CVS: Change %lld, %llu to G_G[U]INT64_FORMAT globally. Fix bad pointer->integer conversion.
* Fix plugins for new query APIWim Taymans2002-12-301-9/+9
| | | | | Original commit message from CVS: Fix plugins for new query API
* No \n in GST_DEBUGWim Taymans2002-12-271-7/+7
| | | | | Original commit message from CVS: No \n in GST_DEBUG
* flac debug cleanup m4 for ffmpegThomas Vander Stichele2002-11-261-2/+8
| | | | | | Original commit message from CVS: flac debug cleanup m4 for ffmpeg
* Some quick fixes for FLAC 1.0.4Wim Taymans2002-09-291-2/+2
| | | | | Original commit message from CVS: Some quick fixes for FLAC 1.0.4
* Add hack to make the flac plugin compile with both flac-1.0.2 and 1.0.3David Schleef2002-09-181-0/+11
| | | | | | Original commit message from CVS: Add hack to make the flac plugin compile with both flac-1.0.2 and 1.0.3
* plugins part of license field patchChristian Schaller2002-09-181-0/+1
| | | | | Original commit message from CVS: plugins part of license field patch
* Small cleanupsWim Taymans2002-09-151-17/+40
| | | | | | Original commit message from CVS: Small cleanups Fix segfault when not negotiated
* avoid symbol conflictsWim Taymans2002-07-281-3/+3
| | | | | Original commit message from CVS: avoid symbol conflicts
* Expose supported events, formats and querytypesWim Taymans2002-07-251-2/+25
| | | | | Original commit message from CVS: Expose supported events, formats and querytypes
* update to 1.0.2-1.0.3 API, unref eventsWim Taymans2002-07-081-10/+12
| | | | | Original commit message from CVS: update to 1.0.2-1.0.3 API, unref events
* FLAC updates, implement sample accurate seeking, add some convert/query ↵Wim Taymans2002-06-071-55/+400
| | | | | | | | functions, make the encoder write a header Original commit message from CVS: FLAC updates, implement sample accurate seeking, add some convert/query functions, make the encoder write a header
* a hack to work around intltool's brokenness a current check for mpeg2dec ↵Andy Wingo2002-04-201-1/+1
| | | | | | | | | | | details->klass reorganizations an element br... Original commit message from CVS: * a hack to work around intltool's brokenness * a current check for mpeg2dec * details->klass reorganizations * an element browser that uses details->klass * separated cdxa parse out from the avi directory
* removal of //-style comments don't link plugins to core libs -- the ↵Andy Wingo2002-03-191-3/+3
| | | | | | | | | versioning is done internally to the plugins with... Original commit message from CVS: * removal of //-style comments * don't link plugins to core libs -- the versioning is done internally to the plugins with the plugin_info struct, and symbol resolution is lazy, so we can always know if a plugin can be loaded by the plugin_info data. in theory.
* Bring the plugins in sync with the new core capsnego system.Wim Taymans2002-01-131-1/+1
| | | | | | Original commit message from CVS: Bring the plugins in sync with the new core capsnego system. Added some features, enhancements...
* Fixed some leftover fixesWim Taymans2001-12-231-4/+1
| | | | | Original commit message from CVS: Fixed some leftover fixes
* adding flacThomas Vander Stichele2001-12-231-0/+250
Original commit message from CVS: adding flac