繁体   English   中英

使用 FFmpeg 通过 UDP 流式传输 H.264 和“未设置尺寸”错误

[英]Streaming H.264 over UDP using FFmpeg, and "dimensions not set" error

到目前为止,我正在尝试通过 UDP 流式传输 H.264,但没有运气。 这是您可以重现问题的最小代码。

编译,

g++ -o test -lavcodec -lavformat -lavutil test.cpp

额外的信息,我开始ffplay如下。 目前它没有用。

ffplay -i udp://127.0.0.1:8554/live.sdp

我的代码的输出(参见avio_open()调用),

[libx264 @ 0x6a26c0] using mv_range_thread = 24
[libx264 @ 0x6a26c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.1 Cache64
[libx264 @ 0x6a26c0] profile High, level 3.1
Output #0, h264, to 'udp://127.0.0.1:8554/live.sdp':
    Stream #0:0, 0, 0/0: Video: h264 (libx264), -1 reference frame, none, q=-1--1
[h264 @ 0x6a2020] dimensions not set
Cannot write header to stream: Success

还有代码,

extern "C" {
    #include <libavcodec/avcodec.h>
    #include <libavformat/avformat.h>
    #include <libavutil/avutil.h>
}

#include <iostream>
using namespace std;

int main() {
    AVCodecContext* m_codecContext;
    AVCodec* m_codec;
    AVFormatContext* m_formatContext;
    AVStream* m_stream;

    unsigned m_outWidth = 768;
    unsigned m_outHeight = 608;

    av_register_all();
    avcodec_register_all();
    avformat_network_init();

    int errorStatus = 0;
    char errorLog[128] = { 0 };
    av_log_set_level(AV_LOG_TRACE);

    string m_output("udp://127.0.0.1:8554/live.sdp");

    if (avformat_alloc_output_context2(&m_formatContext, NULL, "h264", m_output.c_str()) < 0) {
        cerr << "Cannot allocate output context: "
             << av_make_error_string(errorLog, 128, errorStatus) << endl;
        return -1;
    }

    AVOutputFormat *m_outputFormat = m_formatContext->oformat;

    m_codec = avcodec_find_encoder(AV_CODEC_ID_H264);
    if (!m_codec) {
        cerr << "Cannot find an encoder: "
             << av_make_error_string(errorLog, 128, errorStatus) << endl;
        return -1;
    }

    m_codecContext = avcodec_alloc_context3(m_codec);
    if (!m_codecContext) {
        cerr << "Cannot allocate a codec context: "
             << av_make_error_string(errorLog, 128, errorStatus) << endl;
        return -1;
    }

    m_codecContext->pix_fmt = AV_PIX_FMT_YUV420P;
    m_codecContext->width = m_outWidth;
    m_codecContext->height = m_outHeight;

    if (avcodec_open2(m_codecContext, m_codec, NULL) < 0) {
        cerr << "Cannot open codec: "
             << av_make_error_string(errorLog, 128, errorStatus) << endl;
        return -1;
    }

    m_stream = avformat_new_stream(m_formatContext, m_codec);
    if (!m_stream) {
        cerr << "Cannot create a new stream: "
             << av_make_error_string(errorLog, 128, errorStatus) << endl;
        return -1;
    }

    av_dump_format(m_formatContext, 0, m_output.c_str(), 1);

    if ((errorStatus = avio_open(&m_formatContext->pb, m_output.c_str(), AVIO_FLAG_WRITE)) < 0) {
        cerr << "Cannot open output: "
             << av_make_error_string(errorLog, 128, errorStatus) << endl;
        return -1;
    }

    if (avformat_write_header(m_formatContext, NULL) < 0) {
        cerr << "Cannot write header to stream: "
             << av_make_error_string(errorLog, 128, errorStatus) << endl;
        return -1;
    }

    cout << "All done." << endl;

    return 0;
}

对于那些谁拥有更多的空闲时间我的问题,当我改变m_outputrtsp://127.0.0.1:8554/live.sdp ,并ffplay命令ffplay -rtsp_flags listen -i rtsp://127.0.0.1:8554/live.sdp我收到错误消息,

[libx264 @ 0x1e056c0] using mv_range_thread = 24
[libx264 @ 0x1e056c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.1 Cache64
[libx264 @ 0x1e056c0] profile High, level 3.1
Output #0, h264, to 'rtsp://127.0.0.1:8554/live.sdp':
    Stream #0:0, 0, 0/0: Video: h264 (libx264), -1 reference frame, none, q=-1--1
Cannot open output: Protocol not found

我是否天真地期望流媒体协议会像这样改变?

显然我正在创建和初始化一个AVCodecContext然后不使用它..一个AVStream有它自己的AVCodecContext (这是非常明智的,因为不同的流通常需要不同的编码器)并且它是我需要用尺寸和像素格式初始化的. 为此,我还需要交换对avformat_new_stream()avcodec_open2()调用,并首先调用前者。 这是修复的差异。

请注意, m_codecContext已完全删除。

--- rtsp-so.cpp.orig    2015-09-03 17:34:08.190375415 +0200
+++ rtsp-so.cpp 2015-09-03 17:43:42.166542704 +0200
@@ -8,7 +8,6 @@
 using namespace std;

 int main() {
-    AVCodecContext* m_codecContext;
     AVCodec* m_codec;
     AVFormatContext* m_formatContext;
     AVStream* m_stream;
@@ -41,32 +40,25 @@
         return -1;
     }

-    m_codecContext = avcodec_alloc_context3(m_codec);
-    if (!m_codecContext) {
-        cerr << "Cannot allocate a codec context: "
+    m_stream = avformat_new_stream(m_formatContext, m_codec);
+    if (!m_stream) {
+        cerr << "Cannot create a new stream: "
              << av_make_error_string(errorLog, 128, errorStatus) << endl;
         return -1;
     }

-    m_codecContext->pix_fmt = AV_PIX_FMT_YUV420P;
-    m_codecContext->width = m_outWidth;
-    m_codecContext->height = m_outHeight;
+    av_dump_format(m_formatContext, 0, m_output.c_str(), 1);

-    if (avcodec_open2(m_codecContext, m_codec, NULL) < 0) {
-        cerr << "Cannot open codec: "
-             << av_make_error_string(errorLog, 128, errorStatus) << endl;
-        return -1;
-    }
+    m_stream->codec->pix_fmt = AV_PIX_FMT_YUV420P;
+    m_stream->codec->width = m_outWidth;
+    m_stream->codec->height = m_outHeight;

-    m_stream = avformat_new_stream(m_formatContext, m_codec);
-    if (!m_stream) {
-        cerr << "Cannot create a new stream: "
+    if (avcodec_open2(m_stream->codec, m_codec, NULL) < 0) {
+        cerr << "Cannot open codec: "
              << av_make_error_string(errorLog, 128, errorStatus) << endl;
         return -1;
     }

-    av_dump_format(m_formatContext, 0, m_output.c_str(), 1);
-
     if ((errorStatus = avio_open(&m_formatContext->pb, m_output.c_str(), AVIO_FLAG_WRITE)) < 0) {
         cerr << "Cannot open output: "
              << av_make_error_string(errorLog, 128, errorStatus) << endl;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM