From 6b6169d5f3e176d69e52d75252ed2a43f9be792c Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Thu, 3 Sep 2009 18:24:51 +0300 Subject: [PATCH] Disabled temporarily SEI in H.264 bitstream parser. --- femonh264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/femonh264.c b/femonh264.c index 7de289f..f701ccc 100644 --- a/femonh264.c +++ b/femonh264.c @@ -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;