我目前正在开发一个需要解码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()
上执行任何错误检查。请指教......
答案 0 :(得分:6)
事实证明,打开多播UDP RTSP流可以通过以下方式执行:
AVFormatContext* ctxt = avformat_alloc_context();
AVDictionary* options = NULL;
av_dict_set(&options, "rtsp_transport", "udp_multicast", 0);
avformat_open_input(
&ctxt,
urlString,
NULL,
&options
);
...
avformat_free_context(ctxt);
以这种方式使用avformat_open_input()
代替av_open_input_file()
会导致所需的行为。我猜测av_open_input_file()
已被弃用或者从未打算以这种方式使用 - 很可能是后者;)