gst-libs/gst/riff/riff-media.c: Add extradata to huffyuv (fixes #165013).

Original commit message from CVS:
* gst-libs/gst/riff/riff-media.c:
(gst_riff_create_video_caps_with_data):
Add extradata to huffyuv (fixes #165013).
* gst-libs/gst/riff/riff-read.c:
(gst_riff_read_strf_vids_with_data):
Fix extradata extraction if it is in the chunk size.
This commit is contained in:
Ronald S. Bultje 2005-01-25 15:17:23 +00:00
parent 9b537a321b
commit f0e7f52fd6
3 changed files with 16 additions and 0 deletions

View file

@ -1,3 +1,12 @@
2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst-libs/gst/riff/riff-media.c:
(gst_riff_create_video_caps_with_data):
Add extradata to huffyuv (fixes #165013).
* gst-libs/gst/riff/riff-read.c:
(gst_riff_read_strf_vids_with_data):
Fix extradata extraction if it is in the chunk size.
2005-01-25 Edward Hervey <bilboed@bilboed.com>
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>

View file

@ -94,6 +94,10 @@ gst_riff_create_video_caps_with_data (guint32 codec_fcc,
case GST_MAKE_FOURCC ('H', 'F', 'Y', 'U'):
caps = gst_caps_new_simple ("video/x-huffyuv", NULL);
if (strf) {
gst_caps_set_simple (caps, "bpp",
G_TYPE_INT, (int) strf->bit_cnt, NULL);
}
if (codec_name)
*codec_name = g_strdup ("Huffman Lossless Codec");
break;

View file

@ -600,6 +600,9 @@ gst_riff_read_strf_vids_with_data (GstRiffRead * riff,
if (len > 0) {
*extradata = gst_buffer_create_sub (buf, strf->size, len);
}
} else if (strf->size > sizeof (gst_riff_strf_vids)) {
*extradata = gst_buffer_create_sub (buf,
sizeof (gst_riff_strf_vids), strf->size - sizeof (gst_riff_strf_vids));
}
/* debug */