mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[client] h264: don't treat parse failure as fatal
This commit is contained in:
parent
634be5b096
commit
5a84d3bef7
@ -618,8 +618,8 @@ static bool lgd_h264_decode(void * opaque, const uint8_t * src, size_t srcSize)
|
|||||||
|
|
||||||
if (!nal_parse(this->nal, src, srcSize))
|
if (!nal_parse(this->nal, src, srcSize))
|
||||||
{
|
{
|
||||||
DEBUG_ERROR("Failed to parse required information");
|
DEBUG_WARN("nal_parse, perhaps mid stream");
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t pic_type;
|
uint8_t pic_type;
|
||||||
|
Loading…
Reference in New Issue
Block a user