0

我已经使用 x264 编码了一些帧,使用 x264_encoder_encode,之后我使用如下函数创建了 AVPackets:

bool PacketizeNals( uint8_t* a_pNalBuffer, int a_nNalBufferSize, AVPacket* a_pPacket )
{
    if ( !a_pPacket )
return false;
    a_pPacket->data = a_pNalBuffer;
    a_pPacket->size = a_nNalBufferSize;
    a_pPacket->stream_index = 0;
    a_pPacket->flags = AV_PKT_FLAG_KEY;

    a_pPacket->pts = int64_t(0x8000000000000000);
    a_pPacket->dts = int64_t(0x8000000000000000);
}

我这样称呼这个函数:

x264_nal_t* nals;
int num_nals = encode_frame(pic, &nals);
for (int i = 0; i < num_nals; i++)
{
    AVPacket* pPacket = ( AVPacket* )av_malloc( sizeof( AVPacket ) );
    av_init_packet( pPacket );
    if ( PacketizeNals( nals[i].p_payload, nals[i].i_payload, pPacket ) )
    {
        packets.push_back( pPacket );
    }
}

现在我想做的是使用 avcodec_decode_video2 解码这些 AVPackets。我认为问题在于我没有正确初始化解码器,因为编码我使用了“超快”配置文件和“零延迟”调谐( x264 )并且解码我不知道如何指定 ffmpeg 这些选项。在一些示例中,我读过人们使用存储视频的文件初始化解码器,但在这种情况下,我直接使用了 AVPackets。我正在尝试解码的是:

avcodec_init();  
avcodec_register_all();  
AVCodec* pCodec;  
pCodec=avcodec_find_decoder(CODEC_ID_H264);  
AVCodecContext* pCodecContext;  
pCodecContext=avcodec_alloc_context();  
avcodec_open(pCodecContext,pCodec);  
pCodecContext->width = 320;
pCodecContext->height = 200;
pCodecContext->extradata = NULL;
unsigned int nNumPackets = packets.size();
int frameFinished = 0;
for ( auto it = packets.begin(); it != packets.end(); it++ )
{
    AVFrame* pFrame;
    pFrame = avcodec_alloc_frame();
    AVPacket* pPacket = *it;
    int iReturn = avcodec_decode_video2( pCodecContext, pFrame, &frameFinished, pPacket );
}

但在 iReturn 中始终为 -1。

谁能帮我?对不起,如果我在这方面的知识很低,我是新手。

谢谢。

4

3 回答 3

2

我编写了一个简单的客户端/服务器应用程序,它使用 lib x264 进行编码和 ffmpeg 进行解码来流式传输原始 RGB 视频。你可以在这里找到代码:https ://github.com/filippobrizzi/raw_rgb_straming

它展示了如何设置 x264 和 ffmpeg 进行编码/解码。

于 2014-08-01T12:44:11.163 回答
1

现在你像这样初始化解码器

pCodecContext->额外数据=空;

这是不正确的。您需要为此字段分配内存并将数据从编码器的 AVCodecContext::extradata 复制到分配的缓冲区中。AVCodecContext::extradata_size 指定此额外数据缓冲区的大小(以字节为单位)

于 2014-12-14T17:23:42.133 回答
0

Make sure that you are building correct packets. See how this is done in the ffmpeg: http://ffmpeg.org/doxygen/trunk/libx264_8c_source.html (static int encode_nals(AVCodecContext *ctx, AVPacket *pkt, x264_nal_t *nals, int nnal) and static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame, int *got_packet))

于 2013-01-15T10:46:09.883 回答