summaryrefslogtreecommitdiff
path: root/gst/mve/gstmvedemux.c
Commit message (Collapse)AuthorAgeFilesLines
* various: fix pad template ref leaksVincent Penquerc'h2011-11-281-6/+6
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=662664
* mve: do not use the pad buffer allocation functions in demuxersVincent Penquerc'h2010-12-241-8/+5
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=637929
* mvedemux: Add proper flow return aggregationSebastian Dröge2010-09-211-2/+11
| | | | NOT_LINKED should only be returned if all streams returned NOT_LINKED.
* Add -Wmissing-declarations -Wmissing-prototypes to configure flagsBenjamin Otte2010-03-211-8/+0
| | | | And fix all warnings
* gst_element_class_set_details => gst_element_class_set_details_simpleBenjamin Otte2010-03-181-7/+5
|
* gst/mve/gstmvedemux.c: Fix audio discontinuity that happens when silent ↵Jens Granseuer2008-03-031-17/+13
| | | | | | | | | | | chunks are followed by real data again. Fixes... Original commit message from CVS: Patch by: Jens Granseuer <jensgr at gmx dot net> * gst/mve/gstmvedemux.c: (gst_mve_audio_data), (gst_mve_demux_get_type): Fix audio discontinuity that happens when silent chunks are followed by real data again. Fixes bug #519905.
* gst/mve/gstmvedemux.c: Use G_LITTLE_ENDIAN instead of LITTLE_ENDIAN, so ↵Tim-Philipp Müller2007-04-171-1/+1
| | | | | | | | | | stuff compiles on Original commit message from CVS: * gst/mve/gstmvedemux.c: (gst_mve_audio_init): Use G_LITTLE_ENDIAN instead of LITTLE_ENDIAN, so stuff compiles on MingW (no idea though why we add a BYTE_ORDER endianness field if the audio is compressed).
* gst/: Use proper print statements.Edward Hervey2007-01-251-9/+9
| | | | | | | | | | | | | | | | | | | | Original commit message from CVS: * gst/multifile/gstmultifilesink.c: (gst_multi_file_sink_class_init): * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_class_init): * gst/mve/gstmvedemux.c: (gst_mve_video_create_buffer), (gst_mve_video_palette), (gst_mve_video_code_map), (gst_mve_audio_init), (gst_mve_audio_data), (gst_mve_timer_create), (gst_mve_demux_chain): * gst/mve/gstmvemux.c: (gst_mve_mux_push_chunk): * gst/mve/mveaudioenc.c: (mve_compress_audio): * gst/mve/mvevideodec16.c: (ipvideo_copy_block): * gst/mve/mvevideodec8.c: (ipvideo_copy_block): * gst/mve/mvevideoenc16.c: (mve_encode_frame16): * gst/mve/mvevideoenc8.c: (mve_encode_frame8): Use proper print statements. Fixes build on mac os x. <wingo> oo look at me my name is edward i'm hacking on macos wooo
* gst/mve/gstmvedemux.c: Support SEEKING query (bad news now delivered ↵Tim-Philipp Müller2007-01-111-0/+37
| | | | | | | | | | | | properly!); add event function to source pads to... Original commit message from CVS: * gst/mve/gstmvedemux.c: (gst_mve_demux_get_src_query_types), (gst_mve_demux_handle_src_query), (gst_mve_demux_handle_src_event), (gst_mve_add_stream): Support SEEKING query (bad news now delivered properly!); add event function to source pads to make sure seeks aren't propagated upstream, even if they aren't handled.
* Add Interplay MVE format demuxer/decoder and muxer/encoder. Demuxer doesn't ↵Jens Granseuer2007-01-111-0/+1126
support seeking yet, but seems to work fi... Original commit message from CVS: Patch by: Jens Granseuer <jensgr at gmx net> * configure.ac: * gst/mve/Makefile.am: * gst/mve/TODO: * gst/mve/gstmve.c: * gst/mve/gstmvedemux.c: * gst/mve/gstmvedemux.h: * gst/mve/gstmvemux.c: * gst/mve/gstmvemux.h: * gst/mve/mve.h: * gst/mve/mveaudiodec.c: * gst/mve/mveaudioenc.c: * gst/mve/mvevideodec16.c: * gst/mve/mvevideodec8.c: * gst/mve/mvevideoenc16.c: * gst/mve/mvevideoenc8.c: Add Interplay MVE format demuxer/decoder and muxer/encoder. Demuxer doesn't support seeking yet, but seems to work fine otherwise. Closes #348973.