Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/479 lib dav1d support #484

Draft
wants to merge 15 commits into
base: develop
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Formatting
  • Loading branch information
ChristianFeldmann committed Aug 29, 2022
commit fe0d87e2eacb1c5b4f8fc8245accf5200f703e06
6 changes: 3 additions & 3 deletions YUViewLib/src/parser/AV1/AV1OBU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ using namespace av1;

ParserAV1OBU::ParserAV1OBU(QObject *parent) : Base(parent)
{
decValues.PrevFrameID = -1;
this->decValues.PrevFrameID = -1;
}

std::pair<size_t, std::string> ParserAV1OBU::parseAndAddOBU(int obuID,
Expand Down Expand Up @@ -76,7 +76,7 @@ std::pair<size_t, std::string> ParserAV1OBU::parseAndAddOBU(int
if (obu.header.obu_type == ObuType::OBU_TEMPORAL_DELIMITER)
{
decValues.SeenFrameHeader = false;
obuTypeName = "Temporal Delimiter";
obuTypeName = "Temporal Delimiter";
}
else if (obu.header.obu_type == ObuType::OBU_SEQUENCE_HEADER)
{
Expand Down Expand Up @@ -104,7 +104,7 @@ std::pair<size_t, std::string> ParserAV1OBU::parseAndAddOBU(int
}
catch (const std::exception &e)
{
errorText = " ERROR " + std::string(e.what());
errorText = " ERROR " + std::string(e.what());
obuTypeName = "Error";
}

Expand Down