switched sink type

This commit is contained in:
Nicholas Young 2024-10-19 16:53:03 -07:00
parent 7f9129ece9
commit b94d7c6e99

View file

@ -95,7 +95,7 @@ pub fn main() !void {
std.debug.print("HailoRT init completed\nGstreamer Init starting", .{});
const source: ?*gst.GstElement = gst.gst_element_factory_make("videotestsrc", "source");
const sink: ?*gst.GstElement = gst.gst_element_factory_make("autovideosink", "sink");
const sink: ?*gst.GstElement = gst.gst_element_factory_make("appsink", "sink");
const pipeline: ?*gst.GstElement = gst.gst_pipeline_new("test-pipeline");