mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-23 14:21:57 +00:00
[client] h264: don't treat parse failure as fatal
This commit is contained in:
parent
634be5b096
commit
5a84d3bef7
1 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||
{
|
||||
DEBUG_ERROR("Failed to parse required information");
|
||||
return false;
|
||||
DEBUG_WARN("nal_parse, perhaps mid stream");
|
||||
return true;
|
||||
}
|
||||
|
||||
uint8_t pic_type;
|
||||
|
|
Loading…
Reference in a new issue