After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 579290 - Require stream to be parsed for decoding
Require stream to be parsed for decoding
Status: RESOLVED OBSOLETE
Product: GStreamer
Classification: Platform
Component: gst-libav
0.10.21
Other All
: Normal enhancement
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-04-17 13:25 UTC by Arnout Vandecappelle
Modified: 2009-04-17 13:55 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Require MPEG-4 buffers to be parsed. (1.75 KB, patch)
2009-04-17 13:26 UTC, Arnout Vandecappelle
none Details | Review

Description Arnout Vandecappelle 2009-04-17 13:25:47 UTC
+++ This bug was initially created as a clone of Bug #578926 +++

Decoding a stream which has not been parsed does not work correctly (see #578926).  To force autopluggers to insert a parser, set the 'parsed=(boolean)true' property on the codec caps.
Comment 1 Arnout Vandecappelle 2009-04-17 13:26:31 UTC
Created attachment 132827 [details] [review]
Require MPEG-4 buffers to be parsed.

Set the 'parsed' field in the caps of MPEG-4 codecs to 'true'.
This makes sure that an mpeg4videoparse is inserted in the
pipeline when decoding a raw (non-muxed) MPEG-4 stream.  Note
that elements that don't set the 'parsed' field can still link
to ffdec_mpeg4, because their caps do intersect - only linking
with elements that explicitly set 'parsed' to 'false' is not
possible.  Note that it is therefore not possible to link
ffenc_mpeg4 with mpeg4videoparse.
Comment 2 Arnout Vandecappelle 2009-04-17 13:55:28 UTC
As commented in Bug #578926 it is in fact sufficient to raise the rank of mpeg4videoparse.  Closing again.