gstreamer/gst/avi
Wim Taymans aa23e235dc gst/avi/gstavidemux.c: this patch combines the global init_frames with the stream init_frames. Rationale being that t...
Original commit message from CVS:
* gst/avi/gstavidemux.c: (gst_avi_demux_parse_index),
(gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
(gst_avi_demux_massage_index), (gst_avi_demux_handle_seek):
this patch combines the global init_frames with the stream
init_frames. Rationale being that the global delay should
be subtracted from any stream delay.
Fixes #335858.
2006-03-24 18:56:16 +00:00
..
.gitignore Initial revision 2001-12-22 23:22:30 +00:00
avi-ids.h *.h: Revert indenting 2004-03-15 16:32:54 +00:00
avi.vcproj more working plugins 2004-07-27 21:41:30 +00:00
gstavi.c rework configure.ac; make asterisk rtp stuff compile on mingw 2005-11-14 02:13:35 +00:00
gstavidecoder.c don't mix tabs and spaces 2004-03-15 19:32:27 +00:00
gstavidemux.c gst/avi/gstavidemux.c: this patch combines the global init_frames with the stream init_frames. Rationale being that t... 2006-03-24 18:56:16 +00:00
gstavidemux.h gst/avi/gstavidemux.*: If we have an index, use a duration based on the index instead of blindly trusting the informa... 2006-03-03 17:51:16 +00:00
gstavimux.c close #333784 unref the result of gst_pad_get_parent() by: Christophe Fergeau. 2006-03-13 15:49:08 +00:00
gstavimux.h ext/mad/gstmad.c: Fail if caps negotiation fails. Should fix #162184, and should definately be in there regardless of... 2005-01-19 11:01:09 +00:00
Makefile.am fix build and use of GST_LIBS 2005-09-23 04:23:00 +00:00
README Change everyone to video/x-msvideo 2003-11-27 21:49:39 +00:00

The avi decoder plugins 
-----------------------

The avi decoder consists of a set of gstreamer plugins:

 - demuxer (avidemux)
 - avi to gstreamer type converter (avitypes)
 - windows dlls wrappers.

the avidecoder element uses the above plugins to perform the avi
decoding. It is constructed as a custom bin which initially only has
the demuxer element in it. The demuxer has a set of padtemplates for
raw audio and video.

  (------------------------------------)
  ! avidecoder                         !
  !                                 (video/raw)...
  !     (----------)                   !
  !     ! demuxer (video/x-msvideo, auds)..
  !     !          !                   !
  !   -src         !                   !
  !  /  !         (video/x-msvideo, vids)..
 - src  !          !                   !
  !     (----------)                (audio/raw)...
  !                                    !
  (------------------------------------)

the demuxer has a set of padtemplates for the raw avi header properties.

The avi decoder will act on the new_pad signal of the demuxer element
and will attach an avitype plugin to the new pad. Caps negotiation will
convert the raw avi caps to the gstreamer caps. If the src pad of the
avitypes plugin are compatible with the avidecoder padtemplate, the 
avitype pad is ghosted to the avidecoder bin, this is the case where no
codec is needed (for raw PCM samples, for example).

When the avitypes caps are not compatible with one of the avidecoder 
templates, a static autoplugger is used the find an element to connect
the demuxers pad to the decoders padtemplate.

When no element could be found, an windec plugin is attached to the 
demuxers pad and the avitypes plugin is removed from the decoder.


example:
--------

 An avidecoder that has a video pad (decoded with windows dlls) and an
 audio pad (raw PCM).

  (----------------------------------------------------------------)
  ! avidecoder               (--------)    (------)                !
  !                          !avitypes!    !windec!       /-- (video/raw)
  !     (----------)     /-sink      src--sink   src -----         !
  !     !demuxer (video/x-msvideo,    !    !      !                !
  !     !          ! auds).. (--------)    (------)                !  
  !   -sink        !         (--------)                            !
  !  /  !        (video/x-..,!avitypes!                            !
 -sink  !          ! vids).. !        !                            !
  !     (----------)     \-sink      src -------------------- (audio/raw)
  !                          (--------)                            !
  (----------------------------------------------------------------)



TODO
----

automatically generate the padtemplates from all possible avi types
found in the registry.