tag: id3v2: Fix compilation of id3demux when zlib is not present.

Original commit message from CVS:
* gst-libs/gst/tag/id3v2frames.c: (id3demux_id3v2_parse_frame):
Fix compilation of id3demux when zlib is not present.
(Fixes #326602; patch by: Sergey Scobich)
This commit is contained in:
Sergey Scobich 2006-01-15 20:21:48 +00:00 committed by Tim-Philipp Müller
parent f34424e933
commit a9c6822e3f

View file

@ -92,6 +92,7 @@ id3demux_id3v2_parse_frame (ID3TagsWorking * work)
work->parse_size = frame_data_size;
if (work->frame_flags & ID3V2_FRAME_FORMAT_COMPRESSION) {
#ifdef HAVE_ZLIB
uLongf destSize = work->parse_size;
Bytef *dest, *src;
@ -105,6 +106,11 @@ id3demux_id3v2_parse_frame (ID3TagsWorking * work)
g_free (work->parse_data);
return FALSE;
}
#else
GST_WARNING ("Compressed ID3v2 tag frame could not be decompressed"
" because gstid3demux was compiled without zlib support");
return FALSE;
#endif
} else {
work->parse_data = work->hdr.frame_data;
}