Can anyone test my pipeline for memory leak

adeel arshad.adeel.83 at gmail.com
Sun Dec 11 18:58:01 UTC 2016


Hi

This is my pipeline. I am making an app in xcode. I am almost done with my
app. Following is my timeline. I can share my full code

video_bin = gst_parse_bin_from_description("autovideosink", TRUE, NULL);
        video_filter_bin = gst_parse_bin_from_description("capssetter
caps=video/x-raw,interlace-mode=interleaved", TRUE, NULL);
        audio_bin = gst_parse_bin_from_description("audioconvert !
autoaudiosink", TRUE, NULL);
        
        pipeline = gst_parse_launch("playbin", &error);
        const char *char_uri = [uri UTF8String];
        g_object_set(pipeline, "uri", char_uri, NULL);
        GST_DEBUG("URI set to %s", char_uri);
        
        g_object_set(pipeline, "video-sink", video_bin, NULL);
        g_object_set(pipeline, "video-filter", video_filter_bin, NULL);
        g_object_set(pipeline, "audio-sink", audio_bin, NULL);

The memory usage is very high when playing a file in loop. starting from 30
MB to 2.70 GB after two or more days continuous play. I am playing mpeg
files and share these files also.

Regards
Adeel Arshad



--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Can-anyone-test-my-pipeline-for-memory-leak-tp4681144.html
Sent from the GStreamer-devel mailing list archive at Nabble.com.


More information about the gstreamer-devel mailing list