diff options
author | Stefan Kost <ensonic@users.sf.net> | 2009-03-20 15:14:07 +0200 |
---|---|---|
committer | Stefan Kost <ensonic@users.sf.net> | 2009-03-22 21:02:45 +0200 |
commit | 4b3e2b6e4c2eb7feda14e7a9891ead3c76a47cf1 (patch) | |
tree | 69e7397297f86e68aefc9da0cb50b932f81046dd /ext | |
parent | 80caa6bf704716c8bab38c151cec9daba5500d4f (diff) | |
download | gst-plugins-bad-4b3e2b6e4c2eb7feda14e7a9891ead3c76a47cf1.tar.gz gst-plugins-bad-4b3e2b6e4c2eb7feda14e7a9891ead3c76a47cf1.tar.bz2 gst-plugins-bad-4b3e2b6e4c2eb7feda14e7a9891ead3c76a47cf1.zip |
metadata: fix muxing jfifless jpeg. Fixes #574401
Don't error out when to be muxed jpeg has no jfif, as we can easily
add it.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/metadata/metadatamuxjpeg.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ext/metadata/metadatamuxjpeg.c b/ext/metadata/metadatamuxjpeg.c index 3a418a44..0c56a606 100644 --- a/ext/metadata/metadatamuxjpeg.c +++ b/ext/metadata/metadatamuxjpeg.c @@ -416,11 +416,8 @@ metadatamux_jpeg_reading (JpegMuxData * jpeg_data, guint8 ** buf, } } - if (!jfif_found) { - GST_INFO ("no jfif found"); - ret = META_PARSING_ERROR; - goto done; + GST_INFO ("no jfif found, will insert it as needed"); } new_chunk_offset = 2; |