<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 06/25/2013 03:44 PM, chmario wrote:<br>
    </div>
    <blockquote cite="mid:BLU176-W2FF2B82281FF24C9901BBBC8B0@phx.gbl"
      type="cite">
      <div dir="ltr">//<span class="Apple-tab-span"
          style="white-space:pre"> </span>cin >> i; //the code
        crash here
        <div>
          <div><br>
          </div>
        </div>
      </div>
    </blockquote>
    If the code crashes on a `cin`, then it has nothing to do with
    GStreamer.<br>
    <br>
    Are you sure it's this line though, since it seems to be commented
    out?<br>
    <br>
    Do you get any output when it crashes? If you run it in `gdb`, you
    can use the `backtrace` tool to get more output:<br>
    <br>
    gdb ./yourProgram<br>
    (gdb) run<br>
    // stuff happens here<br>
    Crash!<br>
    (gdb) backtrace<br>
  </body>
</html>