mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
Fixes for GST_FOURCC_FORMAT API change.
Original commit message from CVS: * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps), (gst_riff_create_iavs_caps): * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header), (gst_riff_parse_strh), (gst_riff_parse_strf_vids), (gst_riff_parse_info): * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure): * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps): * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Fixes for GST_FOURCC_FORMAT API change.
This commit is contained in:
parent
f175fe8c43
commit
213898e8dc
6 changed files with 22 additions and 10 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
|
||||
(gst_riff_create_iavs_caps):
|
||||
* gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
|
||||
(gst_riff_parse_strh), (gst_riff_parse_strf_vids),
|
||||
(gst_riff_parse_info):
|
||||
* gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
|
||||
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
|
||||
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
|
||||
Fixes for GST_FOURCC_FORMAT API change.
|
||||
|
||||
2005-11-21 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
patch by: Alessandro Dessina <alessandro nnva org>
|
||||
|
|
|
@ -357,7 +357,7 @@ gst_riff_create_video_caps (guint32 codec_fcc,
|
|||
break;
|
||||
|
||||
default:
|
||||
GST_WARNING ("Unknown video fourcc " GST_FOURCC_FORMAT,
|
||||
GST_WARNING ("Unknown video fourcc %" GST_FOURCC_FORMAT,
|
||||
GST_FOURCC_ARGS (codec_fcc));
|
||||
return NULL;
|
||||
}
|
||||
|
@ -609,7 +609,7 @@ gst_riff_create_iavs_caps (guint32 codec_fcc,
|
|||
break;
|
||||
|
||||
default:
|
||||
GST_WARNING ("Unknown IAVS fourcc " GST_FOURCC_FORMAT,
|
||||
GST_WARNING ("Unknown IAVS fourcc %" GST_FOURCC_FORMAT,
|
||||
GST_FOURCC_ARGS (codec_fcc));
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -186,7 +186,7 @@ gst_riff_parse_file_header (GstElement * element,
|
|||
tag = GST_READ_UINT32_LE (data);
|
||||
if (tag != GST_RIFF_TAG_RIFF) {
|
||||
GST_ELEMENT_ERROR (element, STREAM, WRONG_TYPE, (NULL),
|
||||
("Stream is no RIFF stream: " GST_FOURCC_FORMAT,
|
||||
("Stream is no RIFF stream: %" GST_FOURCC_FORMAT,
|
||||
GST_FOURCC_ARGS (tag)));
|
||||
gst_buffer_unref (buf);
|
||||
return FALSE;
|
||||
|
@ -254,9 +254,9 @@ gst_riff_parse_strh (GstElement * element,
|
|||
|
||||
/* debug */
|
||||
GST_INFO_OBJECT (element, "strh tag found:");
|
||||
GST_INFO_OBJECT (element, " type " GST_FOURCC_FORMAT,
|
||||
GST_INFO_OBJECT (element, " type %" GST_FOURCC_FORMAT,
|
||||
GST_FOURCC_ARGS (strh->type));
|
||||
GST_INFO_OBJECT (element, " fcc_handler " GST_FOURCC_FORMAT,
|
||||
GST_INFO_OBJECT (element, " fcc_handler %" GST_FOURCC_FORMAT,
|
||||
GST_FOURCC_ARGS (strh->fcc_handler));
|
||||
GST_INFO_OBJECT (element, " flags 0x%08x", strh->flags);
|
||||
GST_INFO_OBJECT (element, " priority %d", strh->priority);
|
||||
|
@ -342,7 +342,7 @@ gst_riff_parse_strf_vids (GstElement * element,
|
|||
GST_INFO_OBJECT (element, " height %d", strf->height);
|
||||
GST_INFO_OBJECT (element, " planes %d", strf->planes);
|
||||
GST_INFO_OBJECT (element, " bit_cnt %d", strf->bit_cnt);
|
||||
GST_INFO_OBJECT (element, " compression " GST_FOURCC_FORMAT,
|
||||
GST_INFO_OBJECT (element, " compression %" GST_FOURCC_FORMAT,
|
||||
GST_FOURCC_ARGS (strf->compression));
|
||||
GST_INFO_OBJECT (element, " image_size %d", strf->image_size);
|
||||
GST_INFO_OBJECT (element, " xpels_meter %d", strf->xpels_meter);
|
||||
|
@ -615,7 +615,7 @@ gst_riff_parse_info (GstElement * element,
|
|||
default:
|
||||
type = NULL;
|
||||
GST_WARNING_OBJECT (element,
|
||||
"Unknown INFO (metadata) tag entry " GST_FOURCC_FORMAT,
|
||||
"Unknown INFO (metadata) tag entry %" GST_FOURCC_FORMAT,
|
||||
GST_FOURCC_ARGS (tag));
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -386,7 +386,7 @@ paintinfo_find_by_structure (const GstStructure * structure)
|
|||
return NULL;
|
||||
for (i = 0; i < n_fourccs; i++) {
|
||||
s = fourcc_list[i].fourcc;
|
||||
//g_print("testing " GST_FOURCC_FORMAT " and %s\n", GST_FOURCC_ARGS(format), s);
|
||||
/* g_print("testing %" GST_FOURCC_FORMAT " and %s\n", GST_FOURCC_ARGS(format), s); */
|
||||
fourcc = GST_MAKE_FOURCC (s[0], s[1], s[2], s[3]);
|
||||
if (fourcc == format) {
|
||||
return fourcc_list + i;
|
||||
|
|
|
@ -572,7 +572,7 @@ gst_v4lsrc_set_caps (GstBaseSrc * src, GstCaps * caps)
|
|||
}
|
||||
|
||||
if (palette == -1) {
|
||||
GST_WARNING_OBJECT (v4lsrc, "palette for fourcc " GST_FOURCC_FORMAT
|
||||
GST_WARNING_OBJECT (v4lsrc, "palette for fourcc %" GST_FOURCC_FORMAT
|
||||
" is -1, refusing link", GST_FOURCC_ARGS (fourcc));
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -1425,7 +1425,7 @@ gst_xvimagesink_setcaps (GstBaseSink * bsink, GstCaps * caps)
|
|||
(video_width != xvimagesink->xvimage->width) ||
|
||||
(video_height != xvimagesink->xvimage->height))) {
|
||||
GST_DEBUG_OBJECT (xvimagesink,
|
||||
"old format " GST_FOURCC_FORMAT ", new format " GST_FOURCC_FORMAT,
|
||||
"old format %" GST_FOURCC_FORMAT ", new format %" GST_FOURCC_FORMAT,
|
||||
GST_FOURCC_ARGS (xvimagesink->xcontext->im_format),
|
||||
GST_FOURCC_ARGS (im_format));
|
||||
GST_DEBUG_OBJECT (xvimagesink, "renewing xvimage");
|
||||
|
|
Loading…
Reference in a new issue