mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 23:28:16 +00:00
mfutils: Suppress spammy debug print
Remove FIXME debug print. It seems to be spammy. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1452>
This commit is contained in:
parent
6c52008413
commit
3422868c59
1 changed files with 5 additions and 2 deletions
|
@ -306,7 +306,7 @@ gst_mf_media_type_to_video_caps (IMFMediaType * media_type)
|
|||
|
||||
hr = media_type->GetUINT32 (MF_MT_VIDEO_CHROMA_SITING, &val);
|
||||
if (SUCCEEDED (hr)) {
|
||||
GST_LOG ("have chroma site 0x%x", val);
|
||||
gboolean known_value = TRUE;
|
||||
|
||||
if ((val & MFVideoChromaSubsampling_MPEG2) ==
|
||||
MFVideoChromaSubsampling_MPEG2) {
|
||||
|
@ -318,8 +318,11 @@ gst_mf_media_type_to_video_caps (IMFMediaType * media_type)
|
|||
MFVideoChromaSubsampling_Cosited) {
|
||||
chroma_site = GST_VIDEO_CHROMA_SITE_COSITED;
|
||||
} else {
|
||||
GST_FIXME ("unhandled chroma site 0x%x", val);
|
||||
known_value = FALSE;
|
||||
}
|
||||
|
||||
GST_LOG ("have %s chroma site value 0x%x",
|
||||
known_value ? "known" : "unknown", val);
|
||||
}
|
||||
|
||||
if (chroma_site != GST_VIDEO_CHROMA_SITE_UNKNOWN)
|
||||
|
|
Loading…
Reference in a new issue