1
0
mirror of https://github.com/rofafor/vdr-plugin-femon.git synced 2023-10-10 13:36:53 +02:00

Disabled temporarily SEI in H.264 bitstream parser.

This commit is contained in:
Rolf Ahrenberg 2009-09-03 18:24:51 +03:00
parent 22644e6ae4
commit 6b6169d5f3

View File

@ -70,7 +70,7 @@ cFemonH264::~cFemonH264()
bool cFemonH264::processVideo(const uint8_t *buf, int len)
{
uint8_t nal_data[len];
bool aud_found = false, sps_found = false, sei_found = false;
bool aud_found = false, sps_found = false, sei_found = true; // SEI temporarily disabled!
const uint8_t *start = buf;
const uint8_t *end = start + len;