关于android中的stagefright编解码器输入格式的一些东西

时间:2015-02-03 04:07:42

标签: android stagefright

我正在使用stagefright videoencoder在android 4.4中编码视频;

sp<AMessage> format = new AMessage;
format->setInt32("width", 1080);
format->setInt32("height", 1920);
format->setString("mime", "video/avc");
format->setInt32("color-format", OMX_COLOR_FormatYUV420Planar);
format->setInt32("bitrate", 1000000);
format->setFloat("frame-rate", 25);
format->setInt32("i-frame-interval", 5);
sp<MediaCodec> videoEncoder = MediaCodec::CreateByType(looper, "video/avc", true);
videoEncoder->configure(format, NULL, NULL,MediaCodec::CONFIGURE_FLAG_ENCODE);
videoEncoder->start();

但是当我打电话时:

status_t err = gSpVideoEncoder->dequeueOutputBuffer(&bufIndex, &offset, &size, &ptsUsec, &flags, kTimeout);
我得到了:

err === INFO_FORMAT_CHANGED

下一步,我打电话给:

sp<AMessage> newFormat;
videoEncoder->getOutputFormat(&newFormat);
uint32_t width = 0, height = 0;
newFormat->findInt32("width", (int32_t *)(&width));
newFormat->findInt32("height", (int32_t *)(&height));
fprintf(stderr, "new width: %d, height: %d\n", width, height)

我得到了结果:

new width: 1088, height: 1920

我很困惑(不是1080x1920),我是否应该为videoEncoder提供新的输入框架(1088x1920)?

1 个答案:

答案 0 :(得分:3)

视频编码要求帧尺寸与16的倍数即宏块尺寸对齐。高分辨率,即 1920 x 1080 是一种特殊情况,因为1080 是16的倍数。底层编码器期望客户端提供对齐的边界。

在这种情况下,您可以提供如下窗口的数据。对于Luma,您必须与 16 的倍数对齐,对于Chroma,您必须与 8 的倍数对齐。其余像素可以预先填充

请注意:如果编码器能够处理1920 x 1080作为编码分辨率,则输出应该没问题。如果编码器编码为1920 x 1088,由于零填充,您将在生成的比特流中观察到图片底部的绿色波段。

---------------------------------------------
|                                           |
|                                           |
|                                           |
|                   Luma                    |
|                1920 x 1080                |
|                filled into                |
|                a buffer of                |
|                1920 x 1088                |
|                                           |
|                Last 8 lines could         |
|                be filled with zeroes      |
|                                           |
---------------------------------------------
-----------------------
|        Cb           |
|   960 x 540         |
|   filled into       |
|   a buffer of       |
|   960 x 544         |
|                     |
-----------------------
-----------------------
|        Cr           |
|   960 x 540         |
|   filled into       |
|   a buffer of       |
|   960 x 544         |
|                     |
-----------------------