<div dir="ltr">There is a huge number of possible reasons and this doesn't give any indication. Enable logging to see what fails. export GST_DEBUG=x264enc:5 You may also need to look into the element factory. Check the doc for the proper name(s) or use export GST_DEBUG=*:5, which will log everything<br>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Jan 30, 2014 at 5:50 AM, d <span dir="ltr"><<a href="mailto:dudi017@gmail.com" target="_blank">dudi017@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br>
<br>
im trying to create x264enc:<br>
<br>
int main (int argc, char *argv[]) {<br>
  GstElement *pipeline, *src, *enc, *rtp, *sink;<br>
   ...<br>
   ...<br>
<br>
src = gst_element_factory_make ("videotestsrc", "src");<br>
enc = gst_element_factory_make ("x264enc", "enc");<br>
rtp = gst_element_factory_make ("rtph264pay", "rtp");<br>
sink = gst_element_factory_make ("udpsink", "sink");<br>
<br>
pipeline = gst_pipeline_new ("test-pipeline");<br>
<br>
if (!pipeline || !src || !enc || !rtp || !sink  ) {<br>
    g_printerr ("Not all elements could be created.\n");<br>
    return -1;<br>
  }<br>
}<br>
<br>
if I erase the line : enc = gst_element_factory_make ("x264enc", "enc"); the<br>
program will run<br>
<br>
any ideas..?<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://gstreamer-devel.966125.n4.nabble.com/Not-all-elements-could-be-created-tp4664975.html" target="_blank">http://gstreamer-devel.966125.n4.nabble.com/Not-all-elements-could-be-created-tp4664975.html</a><br>

Sent from the GStreamer-devel mailing list archive at Nabble.com.<br>
_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
</blockquote></div><br></div>