Ronald S. Bultje [Tue, 14 Oct 2003 10:09:29 +0000 (10:09 +0000)]
Typo fix
Original commit message from CVS:
Typo fix
Ronald S. Bultje [Tue, 14 Oct 2003 10:07:59 +0000 (10:07 +0000)]
gcc-2.95 fixage
Original commit message from CVS:
gcc-2.95 fixage
David Schleef [Mon, 13 Oct 2003 23:18:04 +0000 (23:18 +0000)]
riff.h is in a different directory
Original commit message from CVS:
riff.h is in a different directory
David Schleef [Sat, 11 Oct 2003 00:20:28 +0000 (00:20 +0000)]
another file that needs to be added
Original commit message from CVS:
another file that needs to be added
Ronald S. Bultje [Fri, 10 Oct 2003 12:47:42 +0000 (12:47 +0000)]
Some interface implementations for video4linux/video4linux2 plugins: a Tuner interface, with which one can select inp...
Original commit message from CVS:
Some interface implementations for video4linux/video4linux2 plugins:
* a Tuner interface, with which one can select inputs and stations. Audio
work is underway here, but unfinished.
* A Xoverlay interface with which one can do simple overlay. Similar to
the API of the v4l/Xv XFree86 extension. Widget implementation for
GTK-2.0 coming up in the sandbox.
* Colorbalance - for adapting colors (brightness, contrast, etc.) - pretty
basic and maybe somewhat overdesigned. But it'll do for now.
Apart from these interfaces, there's also a loadable library 'xwindowlistener'
that listenes to X for the movement of a window and the overlap of other
windows. This is partly copied from xawtv (and thus partly GPL :(), but it's
needed for the xoverlay interface implementation in the v4l/v4l2 elements.
Lastly, some small changes to remove redundant properties from the v4l/v4l2
elements since these can be done much simpler. Comments appreciated!
Ronald S. Bultje [Fri, 10 Oct 2003 12:24:20 +0000 (12:24 +0000)]
Make GstMixerTrack a GObject. I also want to make it emit several signals, starting work is in here but it's not full...
Original commit message from CVS:
Make GstMixerTrack a GObject. I also want to make it emit several signals, starting work is in here but it's not fully implemented yet. for OSS, this will cause issues, but for ALSA, this is all automated.
Ronald S. Bultje [Thu, 9 Oct 2003 22:11:53 +0000 (22:11 +0000)]
Remove can_seek () because eventmasks was removed from sink pads - grrr
Original commit message from CVS:
Remove can_seek () because eventmasks was removed from sink pads - grrr
Leif Johnson [Thu, 9 Oct 2003 22:02:37 +0000 (22:02 +0000)]
changing 'channel' to 'track' to avoid naming overlap
Original commit message from CVS:
changing 'channel' to 'track' to avoid naming overlap
David Schleef [Thu, 9 Oct 2003 02:23:01 +0000 (02:23 +0000)]
Trivial fixes for GstBuffer->GstData migration
Original commit message from CVS:
Trivial fixes for GstBuffer->GstData migration
Andy Wingo [Wed, 8 Oct 2003 16:08:18 +0000 (16:08 +0000)]
/GstBuffer/GstData/ in the API where you can pass events. Fix the plugins to 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.
Leif Johnson [Wed, 8 Oct 2003 07:44:25 +0000 (07:44 +0000)]
updating some plugin categories
Original commit message from CVS:
updating some plugin categories
David Schleef [Tue, 7 Oct 2003 18:52:16 +0000 (18:52 +0000)]
Fix endianness problems in caps. Fixes #124006
Original commit message from CVS:
Fix endianness problems in caps. Fixes #124006
Julien Moutte [Mon, 6 Oct 2003 11:51:46 +0000 (11:51 +0000)]
Using correct spelling for visualization
Original commit message from CVS:
Using correct spelling for visualization
Jeremy Simon [Sat, 4 Oct 2003 20:50:48 +0000 (20:50 +0000)]
fix flac mimetype
Original commit message from CVS:
fix flac mimetype
Christian Schaller [Fri, 3 Oct 2003 05:45:41 +0000 (05:45 +0000)]
update with latest typefind changes, spec should once again work :)
Original commit message from CVS:
update with latest typefind changes, spec should once again work :)
Ronald S. Bultje [Wed, 1 Oct 2003 13:14:52 +0000 (13:14 +0000)]
New typefind system: bytestream is now part of the core all plugins have been modified to use this new typefind syste...
Original commit message from CVS:
New typefind system:
* bytestream is now part of the core
* all plugins have been modified to use this new typefind system
* asf typefinding added
* mpeg video stream typefiding removed because it's broken
* duplicate typefind entries removed
* extra id3 typefinding added, because we've seen 4 types of files
(riff/wav, flac, vorbis, mp3) with id3 headers and each of these needs
to work. Instead, I've added an id3 element and let it redo typefiding
after the id3 header. this needs a hack because spider only typefinds
once. We can remove this hack once spider supports multiple typefinds.
* with all this, mp3 typefinding is semi-rewritten
* id3 typefinding in flac/vorbis is removed, it's no longer needed
* fixed spider and gst-typefind to use this, too.
* Other general cleanups
Ronald S. Bultje [Tue, 30 Sep 2003 21:44:53 +0000 (21:44 +0000)]
Add new element: frame dropper. This element inserts/drops frames to go from a certain input framerate to a certain o...
Original commit message from CVS:
Add new element: frame dropper. This element inserts/drops frames to go from a certain input framerate to a certain output framerate. It's extremely simple and that's why it's so cute.
Ronald S. Bultje [Tue, 30 Sep 2003 21:06:43 +0000 (21:06 +0000)]
Set keyframe flag only when it is a keyframe. This will break quite some formats because many encoders dont set this ...
Original commit message from CVS:
Set keyframe flag only when it is a keyframe. This will break quite some formats because many encoders dont set this flag correctly, but I'll fix that as I encounter them. divx5 works correctly now. ;).
Andy Wingo [Tue, 30 Sep 2003 12:47:48 +0000 (12:47 +0000)]
In the intfloat conversion elements, there were bugs when the float buffer was bigger than the int buffer (in frames)...
Original commit message from CVS:
In the intfloat conversion elements, there were bugs when the float buffer was
bigger than the int buffer (in frames). That's now fixed, some style issues are
"fixed" (subjectively), mallocs are removed from int2float's processing loop,
and the default buffer size was raised to 256 frames to give better performance in
the default case.
Wavenc was modified to not set an event handler on its sink pad. It deals
with EOS in its chain function instead.
Ronald S. Bultje [Mon, 29 Sep 2003 12:01:42 +0000 (12:01 +0000)]
I thought I removed these two...
Original commit message from CVS:
I thought I removed these two...
Thomas Vander Stichele [Sun, 28 Sep 2003 08:31:42 +0000 (08:31 +0000)]
cvs ignore
Original commit message from CVS:
cvs ignore
Thomas Vander Stichele [Sun, 28 Sep 2003 08:30:48 +0000 (08:30 +0000)]
add elapsed time
Original commit message from CVS:
add elapsed time
Christian Schaller [Sat, 27 Sep 2003 18:53:21 +0000 (18:53 +0000)]
update with latest fixes
Original commit message from CVS:
update with latest fixes
Benjamin Otte [Sat, 27 Sep 2003 16:44:53 +0000 (16:44 +0000)]
make ffmpeg erroring out work:
Original commit message from CVS:
make ffmpeg erroring out work:
- don't built gst-libs/ext/ffmpeg
- don't update Tag when cvs command fails
David Schleef [Sat, 27 Sep 2003 03:15:34 +0000 (03:15 +0000)]
Add navigation
Original commit message from CVS:
Add navigation
Thomas Vander Stichele [Fri, 26 Sep 2003 16:45:04 +0000 (16:45 +0000)]
added second example with plotting fixed some aesthetics
Original commit message from CVS:
added second example with plotting
fixed some aesthetics
Benjamin Otte [Thu, 25 Sep 2003 21:40:35 +0000 (21:40 +0000)]
sort the list of plugins that are built and don't spit out so much empty lines
Original commit message from CVS:
sort the list of plugins that are built and don't spit out so much empty lines
David Schleef [Thu, 25 Sep 2003 00:34:57 +0000 (00:34 +0000)]
Don't unref event when calling gst_pad_event_default() (#119155)
Original commit message from CVS:
Don't unref event when calling gst_pad_event_default() (#119155)
Thomas Vander Stichele [Sun, 21 Sep 2003 13:25:46 +0000 (13:25 +0000)]
make sure gtk apps are built
Original commit message from CVS:
make sure gtk apps are built
Thomas Vander Stichele [Sun, 21 Sep 2003 13:24:13 +0000 (13:24 +0000)]
build demo app
Original commit message from CVS:
build demo app
Thomas Vander Stichele [Sun, 21 Sep 2003 13:08:29 +0000 (13:08 +0000)]
fix caps
Original commit message from CVS:
fix caps
Thomas Vander Stichele [Sun, 21 Sep 2003 12:52:55 +0000 (12:52 +0000)]
remove debugging prints
Original commit message from CVS:
remove debugging prints
Thomas Vander Stichele [Sun, 21 Sep 2003 12:21:49 +0000 (12:21 +0000)]
reworked level plugin. It now does RMS, peak, and decay peak signaling per interleaved channel.
Original commit message from CVS:
reworked level plugin. It now does RMS, peak, and decay peak signaling
per interleaved channel.
Jeremy Simon [Sat, 20 Sep 2003 19:34:31 +0000 (19:34 +0000)]
port #121143 to HEAD (flac file detection)
Original commit message from CVS:
port #121143 to HEAD (flac file detection)
David Schleef [Fri, 19 Sep 2003 22:39:28 +0000 (22:39 +0000)]
Fix problem transitioning to PLAYING. (#122481)
Original commit message from CVS:
Fix problem transitioning to PLAYING. (#122481)
Christian Schaller [Fri, 19 Sep 2003 06:27:55 +0000 (06:27 +0000)]
add cvsignore so we don't have to look at generated gst-launch-ext file
Original commit message from CVS:
add cvsignore so we don't have to look at generated gst-launch-ext file
Christian Schaller [Fri, 19 Sep 2003 06:24:35 +0000 (06:24 +0000)]
add versioning to gst-launch-ext and gst-visualise and add new files to spec
Original commit message from CVS:
add versioning to gst-launch-ext and gst-visualise and add new files to spec
Christian Schaller [Thu, 18 Sep 2003 20:55:35 +0000 (20:55 +0000)]
Add gst-launch-ext.in to extra dist
Original commit message from CVS:
Add gst-launch-ext.in to extra dist
Christian Schaller [Thu, 18 Sep 2003 19:50:24 +0000 (19:50 +0000)]
remove this file
Original commit message from CVS:
remove this file
Christian Schaller [Thu, 18 Sep 2003 18:28:23 +0000 (18:28 +0000)]
version gst-launch command in gst-launch-ext
Original commit message from CVS:
version gst-launch command in gst-launch-ext
Thomas Vander Stichele [Tue, 16 Sep 2003 10:00:02 +0000 (10:00 +0000)]
reverting error patch before making a branch.
Original commit message from CVS:
reverting error patch before making a branch.
Benjamin Otte [Mon, 15 Sep 2003 01:08:39 +0000 (01:08 +0000)]
converted gst_element_error to new format in ext/ - gettext pending
Original commit message from CVS:
converted gst_element_error to new format in ext/ - gettext pending
Benjamin Otte [Mon, 15 Sep 2003 00:42:39 +0000 (00:42 +0000)]
converted gst_element_error to new format in sys/oss - gettext pending
Original commit message from CVS:
converted gst_element_error to new format in sys/oss - gettext pending
Benjamin Otte [Mon, 15 Sep 2003 00:34:47 +0000 (00:34 +0000)]
converted gst_element_error to new format in gst/ - gettext pending
Original commit message from CVS:
converted gst_element_error to new format in gst/ - gettext pending
Christian Schaller [Sun, 14 Sep 2003 21:43:13 +0000 (21:43 +0000)]
add COPYING.LIB
Original commit message from CVS:
add COPYING.LIB
David Schleef [Sun, 14 Sep 2003 18:29:11 +0000 (18:29 +0000)]
exerting executive privilege
Original commit message from CVS:
exerting executive privilege
David Schleef [Sun, 14 Sep 2003 11:50:14 +0000 (11:50 +0000)]
Change some g_prints to GST_DEBUG
Original commit message from CVS:
Change some g_prints to GST_DEBUG
David Schleef [Sun, 14 Sep 2003 11:21:55 +0000 (11:21 +0000)]
change caps in template to GST_CAPS_ANY
Original commit message from CVS:
change caps in template to GST_CAPS_ANY
David Schleef [Sat, 13 Sep 2003 16:10:25 +0000 (16:10 +0000)]
Change default program suffix to -0.7
Original commit message from CVS:
Change default program suffix to -0.7
Ronald S. Bultje [Sat, 13 Sep 2003 15:47:59 +0000 (15:47 +0000)]
Make interface hack work with multiple interfaces per element
Original commit message from CVS:
Make interface hack work with multiple interfaces per element
Ronald S. Bultje [Sat, 13 Sep 2003 13:42:09 +0000 (13:42 +0000)]
Copyright fix (code=mine)
Original commit message from CVS:
Copyright fix (code=mine)
Ronald S. Bultje [Sat, 13 Sep 2003 13:37:49 +0000 (13:37 +0000)]
Fix missing symbol
Original commit message from CVS:
Fix missing symbol
Christian Schaller [Sat, 13 Sep 2003 12:12:54 +0000 (12:12 +0000)]
fix v4l elements as they have been merged into just 2
Original commit message from CVS:
fix v4l elements as they have been merged into just 2
Christian Schaller [Sat, 13 Sep 2003 11:47:13 +0000 (11:47 +0000)]
fix typo (not mine, ronalds ;)
Original commit message from CVS:
fix typo (not mine, ronalds ;)
Christian Schaller [Sat, 13 Sep 2003 11:38:25 +0000 (11:38 +0000)]
disting fix, ronald remember to make sure all new files get disted :)
Original commit message from CVS:
disting fix, ronald remember to make sure all new files get disted :)
Ronald S. Bultje [Sat, 13 Sep 2003 10:44:47 +0000 (10:44 +0000)]
typos
Original commit message from CVS:
typos
Christian Schaller [Sat, 13 Sep 2003 10:25:22 +0000 (10:25 +0000)]
latest fixes to get everything disting and building like a charm
Original commit message from CVS:
latest fixes to get everything disting and building like a charm
Ronald S. Bultje [Sat, 13 Sep 2003 08:58:49 +0000 (08:58 +0000)]
Move all the several v4l/v4l2 plugins in one v4l and one v4l2 plugin
Original commit message from CVS:
Move all the several v4l/v4l2 plugins in one v4l and one v4l2 plugin
Ronald S. Bultje [Sat, 13 Sep 2003 01:22:59 +0000 (01:22 +0000)]
Interface implementation example: OSS mixer. Also osscommon->osselement so it can be loaded without being a source/si...
Original commit message from CVS:
Interface implementation example: OSS mixer. Also osscommon->osselement so it can be loaded without being a source/sink (for a stand-alone mixer)
Ronald S. Bultje [Sat, 13 Sep 2003 01:20:04 +0000 (01:20 +0000)]
Interface example: a mixer
Original commit message from CVS:
Interface example: a mixer
Ronald S. Bultje [Fri, 12 Sep 2003 11:39:29 +0000 (11:39 +0000)]
Check for seekability and use gst_pad_push() instead of gst_pad_send_event()
Original commit message from CVS:
Check for seekability and use gst_pad_push() instead of gst_pad_send_event()
Ronald S. Bultje [Fri, 12 Sep 2003 11:39:05 +0000 (11:39 +0000)]
Clarify DV type 1/2 difference
Original commit message from CVS:
Clarify DV type 1/2 difference
David Schleef [Thu, 11 Sep 2003 19:57:59 +0000 (19:57 +0000)]
Remove all locally-defined optimization flags
Original commit message from CVS:
Remove all locally-defined optimization flags
Christian Schaller [Thu, 11 Sep 2003 19:17:02 +0000 (19:17 +0000)]
add cvsignores
Original commit message from CVS:
add cvsignores
Christian Schaller [Thu, 11 Sep 2003 19:02:00 +0000 (19:02 +0000)]
misc minor build and rpm fixes
Original commit message from CVS:
misc minor build and rpm fixes
David Schleef [Sat, 30 Aug 2003 06:50:27 +0000 (06:50 +0000)]
get last fix correct.
Original commit message from CVS:
get last fix correct.
David Schleef [Tue, 26 Aug 2003 06:56:58 +0000 (06:56 +0000)]
rewrite state machine in _loop() function to handle buffer durations
Original commit message from CVS:
rewrite state machine in _loop() function to handle buffer durations
David Schleef [Tue, 26 Aug 2003 05:10:44 +0000 (05:10 +0000)]
Migrate caps to new system. Change to using a simple convolution to create outline.
Original commit message from CVS:
Migrate caps to new system. Change to using a simple convolution
to create outline.
Andrew Turner [Thu, 21 Aug 2003 04:42:56 +0000 (04:42 +0000)]
compilation problems on FreeBSD.
Original commit message from CVS:
Patch from Andrew Turner <zxombie@hotpop.com> (#120307). Fixes
compilation problems on FreeBSD.
Angel Carpintero [Wed, 20 Aug 2003 05:35:48 +0000 (05:35 +0000)]
Add setsockopt SO_REUSEADDR
Original commit message from CVS:
Add setsockopt SO_REUSEADDR
Christian Schaller [Tue, 19 Aug 2003 21:05:26 +0000 (21:05 +0000)]
needed fixes to enable building of RPMS of gst-plugins
Original commit message from CVS:
needed fixes to enable building of RPMS of gst-plugins
David Schleef [Sun, 17 Aug 2003 23:35:38 +0000 (23:35 +0000)]
Handle libtoolize with alternate names
Original commit message from CVS:
Handle libtoolize with alternate names
Angel Carpintero [Wed, 13 Aug 2003 12:18:18 +0000 (12:18 +0000)]
fix GstElementDetails name
Original commit message from CVS:
fix GstElementDetails name
David Schleef [Wed, 13 Aug 2003 06:41:09 +0000 (06:41 +0000)]
Fix regressions from using gstriff library
Original commit message from CVS:
Fix regressions from using gstriff library
David Schleef [Wed, 13 Aug 2003 04:48:51 +0000 (04:48 +0000)]
Remove riff code, since it's duplicated in the riff library
Original commit message from CVS:
Remove riff code, since it's duplicated in the riff library
Angel Carpintero [Tue, 12 Aug 2003 11:20:00 +0000 (11:20 +0000)]
Add PCMU = 0 (G711 mu-law) and PCMA = 8 (G711 a-law) payloads
Original commit message from CVS:
Add PCMU = 0 (G711 mu-law) and PCMA = 8 (G711 a-law) payloads
Angel Carpintero [Mon, 11 Aug 2003 17:54:56 +0000 (17:54 +0000)]
Update and Add some RFCs
Original commit message from CVS:
Update and Add some RFCs
David Schleef [Sun, 10 Aug 2003 00:03:39 +0000 (00:03 +0000)]
Remove redundant definition of plugindir
Original commit message from CVS:
Remove redundant definition of plugindir
David Schleef [Sun, 10 Aug 2003 00:01:58 +0000 (00:01 +0000)]
Remove redundant plugindir definition
Original commit message from CVS:
Remove redundant plugindir definition
David Schleef [Sat, 9 Aug 2003 23:40:49 +0000 (23:40 +0000)]
Define plugindir
Original commit message from CVS:
Define plugindir
Angel Carpintero [Thu, 7 Aug 2003 11:18:57 +0000 (11:18 +0000)]
Enable MTU feature
Original commit message from CVS:
Enable MTU feature
David Schleef [Wed, 6 Aug 2003 17:44:24 +0000 (17:44 +0000)]
change FT_PIXEL_MODE_GRAY to ft_pixel_mode_grays
Original commit message from CVS:
change FT_PIXEL_MODE_GRAY to ft_pixel_mode_grays
Ronald S. Bultje [Wed, 6 Aug 2003 17:37:14 +0000 (17:37 +0000)]
Fix wrong mimetype, might cause #119272
Original commit message from CVS:
Fix wrong mimetype, might cause #119272
Ronald S. Bultje [Mon, 4 Aug 2003 21:44:04 +0000 (21:44 +0000)]
Remove mpeg1enc because A) it's FUBAR and B) we've got mpeg2enc which can do the same and more
Original commit message from CVS:
Remove mpeg1enc because A) it's FUBAR and B) we've got mpeg2enc which can do the same and more
Angel Carpintero [Thu, 31 Jul 2003 11:16:20 +0000 (11:16 +0000)]
Added some issues on TODO
Original commit message from CVS:
Added some issues on TODO
Iain Holmes [Tue, 29 Jul 2003 17:46:14 +0000 (17:46 +0000)]
At end of stream, rewrite the header with the correct number of bytes
Original commit message from CVS:
At end of stream, rewrite the header with the correct number of bytes
David Schleef [Tue, 29 Jul 2003 00:01:30 +0000 (00:01 +0000)]
fix installing into wrong dir
Original commit message from CVS:
fix installing into wrong dir
David Schleef [Mon, 28 Jul 2003 23:59:40 +0000 (23:59 +0000)]
Fix installing plugin in wrong dir
Original commit message from CVS:
Fix installing plugin in wrong dir
Jan Schmidt [Mon, 28 Jul 2003 13:42:54 +0000 (13:42 +0000)]
move the element to Codec/Image/Decoder, as it was annoying me in gst-editor
Original commit message from CVS:
move the element to Codec/Image/Decoder, as it was annoying me in gst-editor
Are there rules for this yet?
Thomas Vander Stichele [Mon, 28 Jul 2003 11:37:49 +0000 (11:37 +0000)]
second attempt fixing gdkpixbuf stuff
Original commit message from CVS:
second attempt
fixing gdkpixbuf stuff
Angel Carpintero [Mon, 28 Jul 2003 10:56:00 +0000 (10:56 +0000)]
Fix gst_speexdec_details information now plugin can be register without problems
Original commit message from CVS:
Fix gst_speexdec_details information now plugin can be register without problems
David Schleef [Sun, 27 Jul 2003 05:29:10 +0000 (05:29 +0000)]
Make mplex subdir dependent on USE_MPLEX
Original commit message from CVS:
Make mplex subdir dependent on USE_MPLEX
David Schleef [Sun, 27 Jul 2003 05:28:17 +0000 (05:28 +0000)]
Add gst-libs/ext/mplex, and check that we have C++ before enabling mplex.
Original commit message from CVS:
Add gst-libs/ext/mplex, and check that we have C++ before enabling
mplex.
David Schleef [Sat, 26 Jul 2003 04:23:32 +0000 (04:23 +0000)]
fix initialization
Original commit message from CVS:
fix initialization
David Schleef [Sat, 26 Jul 2003 04:15:39 +0000 (04:15 +0000)]
Nothing in this directory actually uses Freetype
Original commit message from CVS:
Nothing in this directory actually uses Freetype
David Schleef [Fri, 25 Jul 2003 21:31:58 +0000 (21:31 +0000)]
Compilation fixes for 64-bit architectures
Original commit message from CVS:
Compilation fixes for 64-bit architectures
Angel Carpintero [Fri, 25 Jul 2003 17:06:43 +0000 (17:06 +0000)]
Added tcp plugin to build
Original commit message from CVS:
Added tcp plugin to build
Brian Cameron [Fri, 25 Jul 2003 10:50:47 +0000 (10:50 +0000)]
Adding needed license information. The patch was reviewed and approved by
Original commit message from CVS:
Adding needed license information. The patch was reviewed and approved by
Christian Shaller. Ronald Bultje and Benjamin also responded with
comments.
David Schleef [Fri, 25 Jul 2003 08:41:44 +0000 (08:41 +0000)]
Rewrote the core function. Added some nice #defines that should probably go in gstvideo.h. Fixes #118245.
Original commit message from CVS:
Rewrote the core function. Added some nice #defines that should
probably go in gstvideo.h. Fixes #118245.
David Schleef [Thu, 24 Jul 2003 08:49:42 +0000 (08:49 +0000)]
Add buffer length checks to every typefinding function
Original commit message from CVS:
Add buffer length checks to every typefinding function