我想实现一个应用程序,首先解码一个多媒体文件(例如test.mp4文件,视频编解码器id是H264),得到一个视频流和一个音频流,然后在音频流中做一些不同,最后编码视频流(使用 libx264)和音频流到结果文件(result.mp4)。为了提高效率,我省略了视频流的解码和编码,我通过函数“av_read_frame”得到视频包,然后通过函数“av_write_frame”直接输出到结果文件中。但是输出文件中没有图片,输出文件的大小相当小。
我跟踪了ffmpeg的代码,发现在函数“av_write_frame->mov_write_packet->ff_mov_write_packet”中,会调用函数“ff_avc_parse_nal_units”来获取nal单元的大小,但是返回值很小(比如208字节)。
我发现MP4文件中的H264码流没有以Annex-B格式存储,所以找不到起始码(0x000001),现在我的问题是如何将H264码流改成Annex-B格式,并制作行得通吗?我在每一帧的开头手动添加了启动代码,但它仍然无法正常工作。
任何人都可以给我任何提示吗?非常感谢。以下是与我类似的代码:
// write the stream header, if any
av_write_header(pFormatCtxEnc);
.........
/**
* Init of Encoder and Decoder
*/
bool KeyFlag = false;
bool KeyFlagEx = false;
// Read frames and save frames to disk
int iPts = 1;
av_init_packet(&packet);
while(av_read_frame(pFormatCtxDec, &packet)>=0)
{
if (packet.flags == 1)
KeyFlag = true;
if (!KeyFlag)
continue;
if (m_bStop)
{
break;
}
// Is this a packet from the video stream?
if(packet.stream_index == videoStream)
{
currentframeNum ++;
if (progressCB != NULL && currentframeNum%20 == 0)
{
float fpercent = (float)currentframeNum/frameNum;
progressCB(fpercent,m_pUser);
}
if (currentframeNum >= beginFrame && currentframeNum <= endFrane)
{
if (packet.flags == 1)
KeyFlagEx = true;
if (!KeyFlagEx)
continue;
packet.dts = iPts ++;
av_write_frame(pFormatCtxEnc, &packet);
}
}
// Free the packet that was allocated by av_read_frame
}
// write the trailer, if any
av_write_trailer(pFormatCtxEnc);
/**
* Release of encoder and decoder
*/
return true;