現在、UDP マルチキャスト RTSP ストリームをデコードする必要があるアプリケーションを開発しています。現時点では、ffplay を使用して RTP ストリームを表示できます。
ffplay -rtsp_transport udp_multicast rtsp://streamURLGoesHere
ただし、FFMPEGを使用してUDPストリームを開こうとしています(簡潔にするためにエラーチェックとクリーンアップコードを削除しました)。
AVFormatContext* ctxt = NULL;
av_open_input_file(
&ctxt,
urlString,
NULL,
0,
NULL
);
av_find_stream_info(ctxt);
AVCodecContext* codecCtxt;
int videoStreamIdx = -1;
for (int i = 0; i < ctxt->nb_streams; i++)
{
if (ctxt->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO)
{
videoStreamIdx = i;
break;
}
}
AVCodecContext* codecCtxt = ctxt->streams[videoStreamIdx]->codec;
AVCodec* codec = avcodec_fine_decoder(codecCtxt->codec_id);
avcodec_open(codecCtxt, codec);
AVPacket packet;
while(av_read_frame(ctxt, &packet) >= 0)
{
if (packet.stream_index == videoStreamIdx)
{
/// Decoding performed here
...
}
}
...
このアプローチは、未加工のエンコードされたビデオ ストリームで構成されるファイル入力では正常に機能しますが、UDP マルチキャスト RTSP ストリームの場合は、で実行されるエラー チェックに失敗しますav_open_input_file()
。お知らせ下さい...