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 152436 - jpegdec is broken
jpegdec is broken
Status: RESOLVED INVALID
Product: GStreamer
Classification: Platform
Component: gst-plugins
0.8.4
Other Linux
: Normal normal
: NONE
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2004-09-12 15:35 UTC by Daniel Alonso
Modified: 2005-08-29 15:43 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Daniel Alonso 2004-09-12 15:35:51 UTC
simply issue the following pipeline with any jpeg:

gst-launch filesrc location=prueba.jpg ! jpegdec ! xvimagesink

It outputs the folllowing:

RUNNING pipeline ...
Corrupt JPEG data: 21 extraneous bytes before marker 0xdb
Violación de segmento
Comment 1 Ronald Bultje 2004-09-13 07:07:12 UTC
Use multifilesrc. filesrc reads fixed-size buffers, while jpegdec expects the
full image in one buffer.
Comment 2 Zaheer Abbas Merali 2004-09-20 11:22:30 UTC
I still think we should fix jpegdec so that it can work with filesrc.

I can also confirm that I get the same error message
Comment 3 Ronald Bultje 2004-09-20 14:30:50 UTC
I don't think we would need to fix jpegdec. What we've done for similar cases is
to write a parser in addition to the decoder.