- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试重新编码fourcc V210 (这是一个打包的 YUV4:2:2 格式)到 P010 (平面 YUV4:2:0)。我想我已经按照规范实现了它,但是渲染器给出了错误的图像,所以有些东西是关闭的。解码 V210 在 ffmpeg 中有一个不错的示例(定义是从他们的解决方案中修改的),但我找不到 P010 编码器来查看我做错了什么。
(是的,我已经尝试过 ffmpeg 并且它有效,但它太慢了,在 Intel Gen11 i7 上每帧需要大约 30 毫秒)
澄清(在@Frank 的问题之后):正在处理的帧是 4k(3840px 宽),因此没有用于进行 128b 对齐的代码。
这是在英特尔上运行的,因此应用了很少的字节序转换。
Try1 - 全绿色图像:
以下代码
#define V210_READ_PACK_BLOCK(a, b, c) \
do { \
val = *src++; \
a = val & 0x3FF; \
b = (val >> 10) & 0x3FF; \
c = (val >> 20) & 0x3FF; \
} while (0)
#define PIXELS_PER_PACK 6
#define BYTES_PER_PACK (4*4)
void MyClass::FormatVideoFrame(
BYTE* inFrame,
BYTE* outBuffer)
{
const uint32_t pixels = m_height * m_width;
const uint32_t* src = (const uint32_t *)inFrame);
uint16_t* dstY = (uint16_t *)outBuffer;
uint16_t* dstUVStart = (uint16_t*)(outBuffer + ((ptrdiff_t)pixels * sizeof(uint16_t)));
uint16_t* dstUV = dstUVStart;
const uint32_t packsPerLine = m_width / PIXELS_PER_PACK;
for (uint32_t line = 0; line < m_height; line++)
{
for (uint32_t pack = 0; pack < packsPerLine; pack++)
{
uint32_t val;
uint16_t u, y1, y2, v;
if (pack % 2 == 0)
{
V210_READ_PACK_BLOCK(u, y1, v);
*dstUV++ = u;
*dstY++ = y1;
*dstUV++ = v;
V210_READ_PACK_BLOCK(y1, u, y2);
*dstY++ = y1;
*dstUV++ = u;
*dstY++ = y2;
V210_READ_PACK_BLOCK(v, y1, u);
*dstUV++ = v;
*dstY++ = y1;
*dstUV++ = u;
V210_READ_PACK_BLOCK(y1, v, y2);
*dstY++ = y1;
*dstUV++ = v;
*dstY++ = y2;
}
else
{
V210_READ_PACK_BLOCK(u, y1, v);
*dstY++ = y1;
V210_READ_PACK_BLOCK(y1, u, y2);
*dstY++ = y1;
*dstY++ = y2;
V210_READ_PACK_BLOCK(v, y1, u);
*dstY++ = y1;
V210_READ_PACK_BLOCK(y1, v, y2);
*dstY++ = y1;
*dstY++ = y2;
}
}
}
#ifdef _DEBUG
// Fully written Y space
assert(dstY == dstUVStart);
// Fully written UV space
const BYTE* expectedVurrentUVPtr = outBuffer + (ptrdiff_t)GetOutFrameSize();
assert(expectedVurrentUVPtr == (BYTE *)dstUV);
#endif
}
// This is called to determine outBuffer size
LONG MyClass::GetOutFrameSize() const
{
const LONG pixels = m_height * m_width;
return
(pixels * sizeof(uint16_t)) + // Every pixel 1 y
(pixels / 2 / 2 * (2 * sizeof(uint16_t))); // Every 2 pixels and every odd row 2 16-bit numbers
}
导致所有绿色图像。根据 P010 规范,将 10 位放置在 16 位值的高位中,结果证明这是一个丢失的位移位。
#define V210_READ_PACK_BLOCK(a, b, c) \
do { \
val = *src++; \
a = val & 0x3FF; \
b = (val >> 10) & 0x3FF; \
c = (val >> 20) & 0x3FF; \
} while (0)
#define P010_WRITE_VALUE(d, v) (*d++ = (v << 6))
#define PIXELS_PER_PACK 6
#define BYTES_PER_PACK (4 * sizeof(uint32_t))
// Snipped constructor here which guarantees that we're processing
// something which does not violate alignment.
void MyClass::FormatVideoFrame(
const BYTE* inBuffer,
BYTE* outBuffer)
{
const uint32_t pixels = m_height * m_width;
const uint32_t aligned_width = ((m_width + 47) / 48) * 48;
const uint32_t stride = aligned_width * 8 / 3;
uint16_t* dstY = (uint16_t *)outBuffer;
uint16_t* dstUVStart = (uint16_t*)(outBuffer + ((ptrdiff_t)pixels * sizeof(uint16_t)));
uint16_t* dstUV = dstUVStart;
const uint32_t packsPerLine = m_width / PIXELS_PER_PACK;
for (uint32_t line = 0; line < m_height; line++)
{
// Lines start at 128 byte alignment
const uint32_t* src = (const uint32_t*)(inBuffer + (ptrdiff_t)(line * stride));
for (uint32_t pack = 0; pack < packsPerLine; pack++)
{
uint32_t val;
uint16_t u, y1, y2, v;
if (pack % 2 == 0)
{
V210_READ_PACK_BLOCK(u, y1, v);
P010_WRITE_VALUE(dstUV, u);
P010_WRITE_VALUE(dstY, y1);
P010_WRITE_VALUE(dstUV, v);
V210_READ_PACK_BLOCK(y1, u, y2);
P010_WRITE_VALUE(dstY, y1);
P010_WRITE_VALUE(dstUV, u);
P010_WRITE_VALUE(dstY, y2);
V210_READ_PACK_BLOCK(v, y1, u);
P010_WRITE_VALUE(dstUV, v);
P010_WRITE_VALUE(dstY, y1);
P010_WRITE_VALUE(dstUV, u);
V210_READ_PACK_BLOCK(y1, v, y2);
P010_WRITE_VALUE(dstY, y1);
P010_WRITE_VALUE(dstUV, v);
P010_WRITE_VALUE(dstY, y2);
}
else
{
V210_READ_PACK_BLOCK(u, y1, v);
P010_WRITE_VALUE(dstY, y1);
V210_READ_PACK_BLOCK(y1, u, y2);
P010_WRITE_VALUE(dstY, y1);
P010_WRITE_VALUE(dstY, y2);
V210_READ_PACK_BLOCK(v, y1, u);
P010_WRITE_VALUE(dstY, y1);
V210_READ_PACK_BLOCK(y1, v, y2);
P010_WRITE_VALUE(dstY, y1);
P010_WRITE_VALUE(dstY, y2);
}
}
}
#ifdef _DEBUG
// Fully written Y space
assert(dstY == dstUVStart);
// Fully written UV space
const BYTE* expectedVurrentUVPtr = outBuffer + (ptrdiff_t)GetOutFrameSize();
assert(expectedVurrentUVPtr == (BYTE *)dstUV);
#endif
}
这导致 Y 是正确的,并且 U 和 V 的行数也是正确的,但不知何故 U 和 V 没有正确重叠。它有两个版本似乎通过中心垂直镜像。将 V 归零时类似但不太明显的东西。所以这两个都以一半的宽度呈现?任何提示表示赞赏:)
if (pack % 2 == 0)
应该
if (line % 2 == 0)
最佳答案
有 2 个错误。第一个是因为我没有按照规范的要求将 10 位值推到更高位。第二个是因为我不是按奇数行而是按奇数包编写 UV。
把它留在这里是为了迪斯科效果值,也许其他人需要玩这个并走同样的路。我了解到即使在完全未知的领域中,“只需遵循规范”也可以使用 :) 感谢所有看过它的人。
关于c++ - 如何编码平面 4 :2:0 (fourcc P010),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68433598/
关于strcat函数。 while (*p) p++; 和 while (*++p) ; 两者都有效,但是 while (*p++) ; 不起作用。我认为 first 和 th
" in HTML?(HTML中的““是什么
?)
下面例子中的第一行代码是什么。我看到一个YouTuber在写下面的代码,它显示了一个设计在csswar Challenges中。我也尝试了一下,它很管用。但我以前从未在任何HTML教程上看到过它,我在
vs.
是不间断空格,表示没有换行的空白处。 如果我用 我在两个段落之间有一个空格(更大的间隔)。如果我使用 我在两个段落之间只有一个新行(没有中断)。为什么? 最佳答案 在 HTML 中
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 9
我对编程还很陌生,只是想知道为什么这段代码: for ( ; *p; ++p) *p = tolower(*p); 当 p 指向一个字符串时,可以降低 c 中字符串的大小写吗? 最佳答案 一般来说,这
代码 int n = 25; int *p = &n; printf("%x\n %d\n %x\n", p, p[0], p[1]); 返回: \ 当然我永远不会这样做,但在 K&R 中声明
所以,我想创建一个简单的程序,返回有关连续素数的计算结果。首先,我创建一个包含所有这些素数的列表,然后尝试计算结果,但这给了我一个超出范围的索引。有人可以帮助我吗?我的程序: primes = []
这个问题在这里已经有了答案: With arrays, why is it the case that a[5] == 5[a]? (20 个答案) 关闭 9 年前。 我想知道 C/C++ 中以下四
我仍在努力理解 *p、&p 和 p 之间的区别。根据我的理解,* 可以被认为是“指向的值”,而 & 可以被认为是“地址”。换句话说,* 保存值,而 & 保存地址。如果这是真的,那么 *p 和 p 之间
你是吗? [xxxrecipientFirstNamexxx]
和你是吗? {recipientFirstName}
需要更换 你是吗? [xxxrecipientFirstNamexxx] 和 你是吗? {recipientFirstName} 。我尝试使用边界匹配器。但结果并不符合预期。我尝试使用下面的代码 "A
我想按 IsTop 属性升序排序对象,然后按 JobId 属性降序排序: query = query.OrderBy(p => p.IsTop).ThenOrderByDescending(p =
在我尝试使用 Apache POI 进行转换的 Excel 文件中,我有一个单元格的数值为 -3.97819466831428,自定义格式为“0.0 p.p.;(0.0 p.p.)”。因此,在 Exc
我想创建一个扩展方法,允许我调用 ToSerializableDictionary(p => p.ID)而不是 .ToDictionary(p => p.ID)在以下 LINQ 上下文中。虽然我不确定
在下面的 HTML 代码上运行此 jQuery 代码会返回不同的结果,我认为它们应该返回相同的值。 jQuery 代码: var counter = 0; $("p").each(function()
在下面的代码片段中,符号 *p 等同于 p[0],*(p + 1) 等同于p[1],依此类推。 int* p = new int[3] { 1, 2, 3}; cout << *p << ' ' <<
这个问题在这里已经有了答案: What will happen when I call a member function on a NULL object pointer? [duplicate]
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Undefined Behavior and Sequence Points 按照标准中的定义,E1 +=
" in HTML?(在HTML中“
以下示例中的第一行代码是什么。我看到一个youtube用户写下面的代码,它显示在cssbattle挑战的设计。我也试过,它的作品。但我从来没有见过它在任何HTML教程之前,我在谷歌上搜索它,但它只显示
每当我收到来自 MS outlook 的电子邮件时,我都会收到此标记 & nbsp ; (没有空格)哪个显示为?在 <>. 当我将其更改为 ISO-8859-1 时,浏览器页面字符集编码为 UTF-8
p1
TESTp2
代码: from bs4 import BeautifulSoup soup = BeautifulSoup('p1TESTp2') print soup.div() 结果: [p1, p2] 为什么
我是一名优秀的程序员,十分优秀!