<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Helvetica,sans-serif;" dir="ltr">
<p style="margin-top:0;margin-bottom:0">Hello,</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0">I am facing issue in opening the live encoded h264 stream of 8MP resolution over tcp server in Qt Application. To open the stream in ffplay, I give following command in terminal and it is able to play it:</p>
<p style="margin-top:0;margin-bottom:0"><i>ffplay -f h264 -codec:v h264 -probesize 32M <tcp://ipaddress:port></i></p>
<p style="margin-top:0;margin-bottom:0"><i><br>
</i></p>
<p style="margin-top:0;margin-bottom:0">But when I try to open the stream in Qt Application, avformat_open_input() gives error
<i>Invalid data found while processing input</i>.</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0">Below is the code I am using in Qt Application<br>
<i></i></p>
<p style="margin-top:0;margin-bottom:0"><br>
<i></i></p>
<p style="margin-top:0;margin-bottom:0"></p>
<div>av_register_all();</div>
<div>avcodec_register_all();</div>
<div>avformat_network_init();<br>
AVFormatContext *refrenceFormatCtx = NULL;</div>
<div>SwsContext *img_convert_ctx;<br>
AVIOContext *avio_ctx = NULL;<br>
int video_stream_index = 0;<br>
AVCodecContext* codec_ctx = NULL;<br>
AVSampleFormat *fmt = NULL;<br>
char errorsdef[100];</div>
<div><br>
</div>
<div>
<div>AVDictionary *options = NULL;<br>
     av_dict_set(&options, "video_size","3264x2448",0);<br>
     av_dict_set(&options,"pixel_format","yuv420p",0);<br>
     av_dict_set(&options, "f", "h264", 0);<br>
     av_dict_set(&options, "codec:v", "h264", 0);<br>
     av_dict_set(&options, "codec:a", "aac", 0);<br>
     av_dict_set(&options, "probesize", "32M", 0);</div>
</div>
<div><span>int err = avformat_open_input(&refrenceFormatCtx,"tcp://<ipaddress:port>", NULL, &options);</span></div>
<div><span><span>av_strerror(err,errorsdef,100);</span><br>
</span></div>
<div><span>
<div>qDebug() << "OPening Stream error: "<< err << " "<< errorsdef;<br>
if(err<0)</div>
<div>{</div>
<div>     abort();</div>
<div>}<br>
av_dict_free(&options);</div>
</span></div>
<br>
<p></p>
<p style="margin-top:0;margin-bottom:0">Is the path to set the options in avformat_open_input is correct?</p>
<p style="margin-top:0;margin-bottom:0">Is the parameters set by me, are correct?<br>
</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0">If any help, it will be grateful to me.<br>
</p>
<div id="Signature">
<div id="divtagdefaultwrapper" dir="ltr" style="font-size: 12pt; color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif, "EmojiFont", "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols;">
<p style="margin-top:0; margin-bottom:0"></p>
<br>
<br>
<table style="font-family:"Times New Roman"" cellspacing="0">
<tbody>
<tr>
<td colspan="2" style="font-family:Calibri,sans-serif; font-size:14px; color:rgb(0,75,118)">
Thanks & Regards,<br>
Niraj Gandha</td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td style="font-family:Calibri,sans-serif; font-size:14px; color:rgb(0,75,118); padding-top:10px" valign="top">
<br>
</td>
</tr>
<tr>
<td colspan="2"><br>
</td>
</tr>
<tr>
<td colspan="2" style="font-family:Calibri,sans-serif; font-size:14px; color:rgb(0,75,118)">
<br>
</td>
</tr>
<tr>
<td colspan="2" style="font-family:Calibri,sans-serif; font-size:14px; color:rgb(0,75,118)">
<br>
</td>
</tr>
<tr>
<td colspan="2" style="font-family:Calibri,sans-serif; font-size:14px; color:rgb(0,75,118)">
<br>
</td>
</tr>
</tbody>
</table>
<p></p>
</div>
</div>
</div>
************************************************************************************************************************************************************* eInfochips Business Disclaimer: This e-mail message and all attachments transmitted with it are intended
 solely for the use of the addressee and may contain legally privileged and confidential information. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you
 are hereby notified that any dissemination, distribution, copying, or other use of this message or its attachments is strictly prohibited. If you have received this message in error, please notify the sender immediately by replying to this message and please
 delete it from your computer. Any views expressed in this message are those of the individual sender unless otherwise stated. Company has taken enough precautions to prevent the spread of viruses. However the company accepts no liability for any damage caused
 by any virus transmitted by this email. *************************************************************************************************************************************************************
</body>
</html>