From a0d88d5ff5b266f36e278c3455c6a409b4821949 Mon Sep 17 00:00:00 2001 From: Peter Seiderer Date: Mon, 3 Sep 2012 13:58:22 +0200 Subject: [PATCH] gsth264parse: add comment where return should be checked. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=683264 --- gst/videoparsers/gsth264parse.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gst/videoparsers/gsth264parse.c b/gst/videoparsers/gsth264parse.c index 4dca51c..70f19e8 100644 --- a/gst/videoparsers/gsth264parse.c +++ b/gst/videoparsers/gsth264parse.c @@ -456,6 +456,7 @@ gst_h264_parse_process_nal (GstH264Parse * h264parse, GstH264NalUnit * nalu) switch (nal_type) { case GST_H264_NAL_SPS: gst_h264_parser_parse_sps (nalparser, nalu, &sps, TRUE); + /* TODO: check for failure (sps.id not set) */ GST_DEBUG_OBJECT (h264parse, "triggering src caps check"); h264parse->update_caps = TRUE; @@ -473,6 +474,7 @@ gst_h264_parse_process_nal (GstH264Parse * h264parse, GstH264NalUnit * nalu) break; case GST_H264_NAL_PPS: gst_h264_parser_parse_pps (nalparser, nalu, &pps); + /* TODO: check for failure (pps.id not set) */ /* parameters might have changed, force caps check */ GST_DEBUG_OBJECT (h264parse, "triggering src caps check"); h264parse->update_caps = TRUE; -- 2.7.4