summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix off-by-one allocation problem in gst_aasink_dither_get_type().David Schleef2003-05-051-1/+1
| | | | | | Original commit message from CVS: Fix off-by-one allocation problem in gst_aasink_dither_get_type(). Fixes #112329.
* Implement element synchronization (#108301)Ronald S. Bultje2003-05-023-29/+243
| | | | | Original commit message from CVS: Implement element synchronization (#108301)
* bugfixes:Benjamin Otte2003-04-291-6/+13
| | | | | | | | Original commit message from CVS: bugfixes: - seek correctly on SEEK_METHOD_END - don't emit a warning when mp3's in wav's have no width information - use BYTES format on discontinuous events and omit timestamp when invalid (mp3 anyone?)
* Add metadata (only vorbis comment)Jeremy Simon2003-04-272-3/+117
| | | | | Original commit message from CVS: Add metadata (only vorbis comment)
* fixes:Benjamin Otte2003-04-261-5/+5
| | | | | | | | Original commit message from CVS: fixes: - wrong type of 0 - only write data into buffer if buffer is big enough - write data into a buffer which we actually may write
* Removing avifile and http plugins, also fixing some disting issuesChristian Schaller2003-04-233-54/+5
| | | | | Original commit message from CVS: Removing avifile and http plugins, also fixing some disting issues
* Added corresponding divx/xvid decoders and fixed some first-hand encoder bugsRonald S. Bultje2003-04-221-7/+22
| | | | | Original commit message from CVS: Added corresponding divx/xvid decoders and fixed some first-hand encoder bugs
* Adds divx/xvid encoders. divx encoder is based on divx4linux (commercial, ↵Ronald S. Bultje2003-04-212-4/+50
| | | | | | | | | | | closed-source) Original commit message from CVS: Adds divx/xvid encoders. * divx encoder is based on divx4linux (commercial, closed-source) * xvid encoder is based on xvidcore (http://www.xvid.org/, GPL - Christian? ;) ) Both use a GstCaps that doesn't conform with what we currently use, I might fix that later on or so. For now, it doesn't matter, it's just a test. We're also missing corresponding decoders (ffmpeg can decoded this too, but that's not the point), these might come later too.
* Fix compilation errorsDavid Schleef2003-04-161-3/+3
| | | | | Original commit message from CVS: Fix compilation errors
* we do not destroy anything anymore. Not even unwanted padsBenjamin Otte2003-04-151-3/+0
| | | | | Original commit message from CVS: we do not destroy anything anymore. Not even unwanted pads
* added support for alaw/mulaw audio - yes, I have alaw encoded AVIs hereBenjamin Otte2003-04-141-0/+19
| | | | | Original commit message from CVS: added support for alaw/mulaw audio - yes, I have alaw encoded AVIs here
* Added initial version of audioconvert, a generic converter of integer ↵Benjamin Otte2003-04-141-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | audio/raw formats. Original commit message from CVS: Added initial version of audioconvert, a generic converter of integer audio/raw formats. It currently supports conversion of - channels (mono/stereo only, until someone tells me how to mix other channels) - endianness (little/bi endian) - signedness - width (8, 1, 24 and 32 bits) - depth (1 - width bits) missing: - enough testing (I intend to write a testsuite for this, but that's pending) - samplerate conversion - other goodies like format conversion etc Expect bugs when using it. problems this should solve: - encoding wav files on big endian machines - goom working with mono audio files in gst-player - Iain's soundcard (that one is a problem in itself) - complaints about missing conversion - too many age old, nearly unmaintained plugins (stereo2mono etc.) Have fun.
* Change autoconf_2.52d_check to 2_52 to make bash happyDavid Schleef2003-04-132-1/+1
| | | | | Original commit message from CVS: Change autoconf_2.52d_check to 2_52 to make bash happy
* - handle mono audio tooWim Taymans2003-04-132-44/+102
| | | | | | | Original commit message from CVS: - handle mono audio too - better caps negotiation - goom_close() in dispose
* Update dvdnav plugin to latest versionRonald S. Bultje2003-04-131-0/+17
| | | | | Original commit message from CVS: Update dvdnav plugin to latest version
* fixes to wavparse:Benjamin Otte2003-04-111-4/+35
| | | | | | | | | Original commit message from CVS: fixes to wavparse: - endianness is G_LITTLE_ENDIAN and not G_BYTE_ORDER - support the law formats - error out on unknown format, don't try to go on (fixes #110516) - check buffer size before typefinding
* This one needs to be adapted tooRonald S. Bultje2003-04-071-1/+0
| | | | | Original commit message from CVS: This one needs to be adapted too
* Port some changes from 0.6.0/0.6.1 back to HEAD (.pc files moved to ↵Ronald S. Bultje2003-04-077-99/+33
| | | | | | | pkg-config/, .m4 file moved from plugins to core) Original commit message from CVS: Port some changes from 0.6.0/0.6.1 back to HEAD (.pc files moved to pkg-config/, .m4 file moved from plugins to core)
* Convert some of the broken fourcc printing to GST_FOURCC_FORMATDavid Schleef2003-04-071-3/+3
| | | | | Original commit message from CVS: Convert some of the broken fourcc printing to GST_FOURCC_FORMAT
* Fix a bunch of endianness conversions that were done as long instead of ↵David Schleef2003-04-073-15/+15
| | | | | | | | | int32. Should go into 0.6.1. Original commit message from CVS: Fix a bunch of endianness conversions that were done as long instead of int32. Should go into 0.6.1.
* Fixup for bug 109797 and 109094Ronald S. Bultje2003-04-061-9/+15
| | | | | Original commit message from CVS: Fixup for bug 109797 and 109094
* - Better state change functionWim Taymans2003-04-062-134/+55
| | | | | | | | Original commit message from CVS: - Better state change function - fail when negotiation was not performed - removed properties that are implied by caps - only open device in negotiation
* Fix the QCAM detection. (Correctly, this time.) Should go into 0.6.1David Schleef2003-04-051-1/+1
| | | | | Original commit message from CVS: Fix the QCAM detection. (Correctly, this time.) Should go into 0.6.1
* Correct fix for #109048. Disable qcamsrc plugin if non-i386.David Schleef2003-04-041-3/+2
| | | | | Original commit message from CVS: Correct fix for #109048. Disable qcamsrc plugin if non-i386.
* I'm too lazy to comment thisRonald S. Bultje2003-04-041-14/+14
| | | | | Original commit message from CVS: Fix #106709 - waiting for approval in 0.6.1 - patch thanks to Peter N Lundblad <lundblad@linux.nu>
* implement clocking set clock counter back to zero on ready->paused move ↵Ronald S. Bultje2003-03-302-4/+62
| | | | | | | | | | open/close to ready/null instead of paused/re... Original commit message from CVS: * implement clocking * set clock counter back to zero on ready->paused * move open/close to ready/null instead of paused/ready. * add random typos
* Added gst_gconf function to render visualisation plugin from GConf key ↵Julien Moutte2003-03-291-0/+11
| | | | | | | | "default/visualisation" Original commit message from CVS: Added gst_gconf function to render visualisation plugin from GConf key "default/visualisation" Enjoyed that commit to document those functions and remove commented functions
* wav is little endianBenjamin Otte2003-03-251-1/+1
| | | | | Original commit message from CVS: wav is little endian
* I bet you didn't try if the fix worked, BBB ;)Benjamin Otte2003-03-241-2/+2
| | | | | | Original commit message from CVS: I bet you didn't try if the fix worked, BBB ;) Fixed it the right way now.
* fix compile errorBenjamin Otte2003-03-241-1/+1
| | | | | Original commit message from CVS: fix compile error
* Fix compiler problems with gcc-2.96/RH-7.3Ronald S. Bultje2003-03-141-2/+2
| | | | | Original commit message from CVS: Fix compiler problems with gcc-2.96/RH-7.3
* fixes for monkeys audioChristian Schaller2003-03-111-0/+1
| | | | | Original commit message from CVS: fixes for monkeys audio
* Add monkeyaudio pluginJeremy Simon2003-03-111-1/+3
| | | | | Original commit message from CVS: Add monkeyaudio plugin
* Fix v4l/v4l2 compilation problemsRonald S. Bultje2003-03-092-2/+37
| | | | | Original commit message from CVS: Fix v4l/v4l2 compilation problems
* Fix compilation failure in testsuite/alsa/Ronald S. Bultje2003-03-051-0/+1
| | | | | Original commit message from CVS: Fix compilation failure in testsuite/alsa/
* goom takes stereo dataWim Taymans2003-03-041-1/+1
| | | | | Original commit message from CVS: goom takes stereo data
* resync on discont eventsWim Taymans2003-03-041-0/+21
| | | | | Original commit message from CVS: resync on discont events
* Added state change function to clear some state in READYWim Taymans2003-03-041-6/+33
| | | | | Original commit message from CVS: Added state change function to clear some state in READY
* Make alaw / mulaw work again.Benjamin Otte2003-03-039-298/+192
| | | | | | | Original commit message from CVS: Make alaw / mulaw work again. - fixed link functions - make alaw encode/decode use alsa code, so it works right now
* Unification of the way to speak to v4l2 and v4l elements... Also fix a ↵Ronald S. Bultje2003-03-0211-328/+213
| | | | | | | segfautl when doing gst-inspect v4l2src Original commit message from CVS: Unification of the way to speak to v4l2 and v4l elements... Also fix a segfautl when doing gst-inspect v4l2src
* Silly bug, i wonder who was the last one to play with itZeeshan Ali2003-03-021-6/+0
| | | | | Original commit message from CVS: Silly bug, i wonder who was the last one to play with it
* remove obsolete requirement from rtp pluginChristian Schaller2003-03-021-1/+0
| | | | | Original commit message from CVS: remove obsolete requirement from rtp plugin
* commit RTP fixes to spec fileChristian Schaller2003-03-021-21/+25
| | | | | Original commit message from CVS: commit RTP fixes to spec file
* Commit header changes tooWim Taymans2003-03-021-0/+2
| | | | | Original commit message from CVS: Commit header changes too
* one missing file updatedChristian Schaller2003-03-021-1/+1
| | | | | Original commit message from CVS: one missing file updated
* Complete the move of the RTP pluginChristian Schaller2003-03-0217-27/+2209
| | | | | Original commit message from CVS: Complete the move of the RTP plugin
* Implement seeking on wavWim Taymans2003-03-011-65/+140
| | | | | Original commit message from CVS: Implement seeking on wav
* remove videosink from specChristian Schaller2003-03-011-26/+2
| | | | | Original commit message from CVS: remove videosink from spec
* fix ivorbis part 2Christian Schaller2003-03-011-6/+1
| | | | | Original commit message from CVS: fix ivorbis part 2
* get this thing working (again ?)Benjamin Otte2003-02-251-25/+26
| | | | | Original commit message from CVS: get this thing working (again ?)