summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)AuthorFilesLines
2005-01-26tools/gst-launch-ext-m.m: Fix AVI/ASF pipelines (#165340).Ronald S. Bultje1-2/+2
Original commit message from CVS: * tools/gst-launch-ext-m.m: Fix AVI/ASF pipelines (#165340).
2005-01-17tools/gst-launch-ext-m.m: Add .aac, fix .m1v/.m2v (#163891).Ronald S. Bultje1-2/+3
Original commit message from CVS: * tools/gst-launch-ext-m.m: Add .aac, fix .m1v/.m2v (#163891).
2005-01-06add mpc supportChristian Schaller1-0/+1
Original commit message from CVS: add mpc support
2004-12-21more pipeline fixesChristian Schaller1-2/+2
Original commit message from CVS: more pipeline fixes
2004-12-21fix avi/asf pipelineChristian Schaller1-2/+2
Original commit message from CVS: fix avi/asf pipeline
2004-12-21add mp4 and update Quicktime pipelineChristian Schaller1-1/+2
Original commit message from CVS: add mp4 and update Quicktime pipeline
2004-12-16fix mpeg and vob pipelines, others are still borked thoughChristian Schaller1-9/+9
Original commit message from CVS: fix mpeg and vob pipelines, others are still borked though
2004-12-08tools/gst-visualise-m.m: Switch to elements that currently exist.David Schleef1-5/+5
Original commit message from CVS: * tools/gst-visualise-m.m: Switch to elements that currently exist.
2004-09-142004-09-14 Brian Cameron <brian.cameron@sun.comBrian Cameron1-2/+2
Original commit message from CVS: 2004-09-14 Brian Cameron <brian.cameron@sun.com * tools/gst-launch-ext-m.m: Changed ~ to $ENV{HOME} to allow this script to work on Solaris since bash shell handles echo differenly than bash.
2004-07-08updateThomas Vander Stichele2-5/+6
Original commit message from CVS: update
2004-03-31tools/gst-launch-ext-m.m: Applied patch from gnome@flyn.org (W.gnome@flyn.org1-0/+1
Original commit message from CVS: * tools/gst-launch-ext-m.m: Applied patch from gnome@flyn.org (W. Michael Petullo) to handle .mov
2004-03-10fixesThomas Vander Stichele1-1/+1
Original commit message from CVS: fixes
2004-03-10removingThomas Vander Stichele1-44/+0
Original commit message from CVS: removing
2004-03-10add ignores, remove old filesThomas Vander Stichele4-246/+5
Original commit message from CVS: add ignores, remove old files
2004-03-10whoops, didn't mean to commit this one :)Thomas Vander Stichele1-784/+0
Original commit message from CVS: whoops, didn't mean to commit this one :)
2004-03-10updating tools generationThomas Vander Stichele6-4/+1105
Original commit message from CVS: updating tools generation
2004-03-09add/fix error handling in cdparanoia add it to translations make tools ↵Thomas Vander Stichele1-0/+5
scripts executable Original commit message from CVS: add/fix error handling in cdparanoia add it to translations make tools scripts executable
2004-03-08fix ogg pipeline in gst-launch-extChristian Schaller1-1/+1
Original commit message from CVS: fix ogg pipeline in gst-launch-ext
2004-01-16update gst-launch-ext to use a better plugin for colorspace and X winChristian Schaller1-1/+1
Original commit message from CVS: update gst-launch-ext to use a better plugin for colorspace and X win
2004-01-15gst/videofilter/gstvideobalance.c: Implement passthru if settings are in the ↵Julien Moutte1-1/+1
middle. Original commit message from CVS: 2004-01-15 Julien MOUTTE <julien@moutte.net> * gst/videofilter/gstvideobalance.c: (gst_videobalance_init), (gst_videobalance_colorbalance_set_value): Implement passthru if settings are in the middle. * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
2004-01-01configure.ac: Fix configure check for mpeg2enc. We need 1.6.1.93 instead of ↵Ronald S. Bultje1-1/+1
1.6.1.92, since the pkg-config file of 1.... Original commit message from CVS: 2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net> * configure.ac: Fix configure check for mpeg2enc. We need 1.6.1.93 instead of 1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and it therefore uses the wrong include paths. Too bad... Note that 1.6.1.93 is not release yet. ;). Also add a check for mplex, which is now using the lib'ified mplex from mjpegtools, too. * ext/ffmpeg/gstffmpegcodecmap.c: Add codec_tag for 3ivx/xvid. For xvid, this should fix playback issues. I don't think ffmpeg handles 3ivx correctly, so this probably won't work. But it won't hurt either. * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect), (gst_ffmpegdec_chain): * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect), (gst_ffmpegenc_chain_audio): Fix memleak in audio encoding. Close codec if open fails, this calls the cleanup routines so we can re-use the context. * ext/mpeg2enc/gstmpeg2enc.cc: Fix pad template names/types, fix memory issue with getcaps(). * ext/mpeg2enc/gstmpeg2encoder.cc: * ext/mpeg2enc/gstmpeg2encoder.hh: Fix compile issue with new caps system (const thingy). * ext/mpeg2enc/gstmpeg2encpicturereader.cc: * ext/mpeg2enc/gstmpeg2encpicturereader.hh: We read a first frame right on initing, so that we have a caps when we init the output. This caps is cached in padprivate and read as first frame. * ext/mplex/Makefile.am: * ext/mplex/gstmplex.cc: * ext/mplex/gstmplex.h: * ext/mplex/gstmplex.hh: * ext/mplex/gstmplexibitstream.cc: * ext/mplex/gstmplexibitstream.hh: * ext/mplex/gstmplexjob.cc: * ext/mplex/gstmplexjob.hh: * ext/mplex/gstmplexoutputstream.cc: * ext/mplex/gstmplexoutputstream.hh: We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin had issues, didn't do capsnego, supported only a subset of the mplex features and required a mplex fork in our local CVS. Plus that it worked agaist a very old mplex version. Rewriting was faster than updating it. * gst-libs/ext/Makefile.am: * gst-libs/ext/mplex/INSTRUCT: * gst-libs/ext/mplex/Makefile.am: * gst-libs/ext/mplex/README: * gst-libs/ext/mplex/TODO: * gst-libs/ext/mplex/ac3strm_in.cc: * gst-libs/ext/mplex/audiostrm.hh: * gst-libs/ext/mplex/audiostrm_out.cc: * gst-libs/ext/mplex/aunit.hh: * gst-libs/ext/mplex/bits.cc: * gst-libs/ext/mplex/bits.hh: * gst-libs/ext/mplex/buffer.cc: * gst-libs/ext/mplex/buffer.hh: * gst-libs/ext/mplex/fastintfns.h: * gst-libs/ext/mplex/format_codes.h: * gst-libs/ext/mplex/inputstrm.cc: * gst-libs/ext/mplex/inputstrm.hh: * gst-libs/ext/mplex/lpcmstrm_in.cc: * gst-libs/ext/mplex/mjpeg_logging.cc: * gst-libs/ext/mplex/mjpeg_logging.h: * gst-libs/ext/mplex/mjpeg_types.h: * gst-libs/ext/mplex/mpastrm_in.cc: * gst-libs/ext/mplex/mpegconsts.cc: * gst-libs/ext/mplex/mpegconsts.h: * gst-libs/ext/mplex/mplexconsts.hh: * gst-libs/ext/mplex/multplex.cc: * gst-libs/ext/mplex/outputstream.hh: * gst-libs/ext/mplex/padstrm.cc: * gst-libs/ext/mplex/padstrm.hh: * gst-libs/ext/mplex/stillsstream.cc: * gst-libs/ext/mplex/stillsstream.hh: * gst-libs/ext/mplex/systems.cc: * gst-libs/ext/mplex/systems.hh: * gst-libs/ext/mplex/vector.cc: * gst-libs/ext/mplex/vector.hh: * gst-libs/ext/mplex/videostrm.hh: * gst-libs/ext/mplex/videostrm_in.cc: * gst-libs/ext/mplex/videostrm_out.cc: * gst-libs/ext/mplex/yuv4mpeg.cc: * gst-libs/ext/mplex/yuv4mpeg.h: * gst-libs/ext/mplex/yuv4mpeg_intern.h: * gst-libs/ext/mplex/yuv4mpeg_ratio.cc: We don't fork mjpegtools' mplex in our CVS anymore. * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps), (gst_avi_demux_add_stream): * gst/avi/gstavidemux.h: Add getcaps() function for proper caps nego. This makes some parts of AVI playback/reading work. * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect): Resize window on new capsnego. This is probably wrong, but I'm still committing it because with current capsnego, the first successfull capsnego is auto-fixated, therefore rounded down to the lowest values in the caps. this results in a 16x16 XWindow that is not reized when real capsnego finishes. Dave, I see more cases of this, do you know a proper solution? * tools/gst-launch-ext.in: Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
2003-12-13Remove ffmpegdecall, it's been removed ages ago, and add matroska pipelinesRonald S. Bultje1-4/+6
Original commit message from CVS: Remove ffmpegdecall, it's been removed ages ago, and add matroska pipelines
2003-11-23Add a comment for wmaJeremy Simon1-0/+2
Original commit message from CVS: Add a comment for wma Add mpeg4 audio pipeline (aac)
2003-11-23Update the pipeline to play wma filesJeremy Simon1-1/+1
Original commit message from CVS: Update the pipeline to play wma files
2003-09-19add cvsignore so we don't have to look at generated gst-launch-ext fileChristian Schaller1-0/+1
Original commit message from CVS: add cvsignore so we don't have to look at generated gst-launch-ext file
2003-09-18Add gst-launch-ext.in to extra distChristian Schaller1-1/+1
Original commit message from CVS: Add gst-launch-ext.in to extra dist
2003-09-18remove this fileChristian Schaller1-161/+0
Original commit message from CVS: remove this file
2003-09-18version gst-launch command in gst-launch-extChristian Schaller1-0/+161
Original commit message from CVS: version gst-launch command in gst-launch-ext
2003-07-28second attempt fixing gdkpixbuf stuffThomas Vander Stichele1-1/+1
Original commit message from CVS: second attempt fixing gdkpixbuf stuff
2003-06-08Fix some weirdities in the man page, see #114060Ronald S. Bultje1-2/+2
Original commit message from CVS: Fix some weirdities in the man page, see #114060
2003-05-14fixed gst-launch-ext to use new pipelines (bug 111108)Benjamin Otte1-14/+14
Original commit message from CVS: fixed gst-launch-ext to use new pipelines (bug 111108)
2003-03-04goom takes stereo dataOSLOSUMMIT1-200303051Wim Taymans1-1/+1
Original commit message from CVS: goom takes stereo data
2003-01-31Added handlers for .wmv .wma and .wa to use the ASF demuxerOwen Fraser-Green1-0/+3
Original commit message from CVS: Added handlers for .wmv .wma and .wa to use the ASF demuxer
2003-01-26add asf pipelineChristian Schaller1-0/+1
Original commit message from CVS: add asf pipeline
2003-01-19add mpegThomas Vander Stichele1-0/+1
Original commit message from CVS: add mpeg
2003-01-18commit patch from leifThomas Vander Stichele1-3/+15
Original commit message from CVS: commit patch from leif
2003-01-11move from windec to ffmpegdecallChristian Schaller1-1/+1
Original commit message from CVS: move from windec to ffmpegdecall
2002-11-26flac debug cleanup m4 for ffmpegThomas Vander Stichele1-2/+2
Original commit message from CVS: flac debug cleanup m4 for ffmpeg
2002-11-03updatesThomas Vander Stichele2-3/+28
Original commit message from CVS: updates
2002-11-03sigh, that was a silly bugThomas Vander Stichele1-1/+7
Original commit message from CVS: sigh, that was a silly bug
2002-11-01backmergeThomas Vander Stichele1-1/+1
Original commit message from CVS: backmerge
2002-10-29this can go tooThomas Vander Stichele1-4/+0
Original commit message from CVS: this can go too
2002-10-29fix two dots in one filename only get bit after last dotThomas Vander Stichele1-2/+11
Original commit message from CVS: fix two dots in one filename only get bit after last dot
2002-10-28some more of theseThomas Vander Stichele1-1/+4
Original commit message from CVS: some more of these
2002-09-23release backportThomas Vander Stichele1-2/+3
Original commit message from CVS: release backport
2002-09-09colorspace ! xvideosink is betterWhitespace Fixer1-1/+1
Original commit message from CVS: colorspace ! xvideosink is better
2002-08-25Add .swf file type, even though swfdec isn't in gst-plugins yetDavid Schleef1-0/+1
Original commit message from CVS: Add .swf file type, even though swfdec isn't in gst-plugins yet
2002-07-09merge from release branchThomas Vander Stichele1-1/+2
Original commit message from CVS: merge from release branch
2002-06-27more fix for vob pipeline. This works in theory, but there are still ↵Christian Schaller1-1/+1
timestamp issues with a52dec that needs addressing. Original commit message from CVS: more fix for vob pipeline. This works in theory, but there are still timestamp issues with a52dec that needs addressing.
2002-06-25fixed the vob pipeline. It now plays the movie perfectly, but the sound is ↵Christian Schaller1-1/+1
missing and it is still very dark Original commit message from CVS: fixed the vob pipeline. It now plays the movie perfectly, but the sound is missing and it is still very dark