I’m constantly getting warnings in my app
2025-04-24 15:18:18.470 24907-31768 GStreamer+h264parse com.gst.webrtc.standalone_client W 0:00:06.338161001 0x71fa84c460 ../gst/videoparsers/gsth264parse.c:2203:gst_h264_parse_update_src_caps:<h264parse0> VUI framerate 1000000000.0 exceeds allowed maximum 34.1
I feed the appsink with custom frames, and I did
frame->timestamp = os_monotonic_get_ns();
frame->source_timestamp = frame->timestamp;
frame->source_sequence = c->image_sequence++;
frame->source_id = 0;
to set timestamps on frames. Is the warning in any way related to this?