Skip to content

Commit

Permalink
[Decode] Fix incorrect status check
Browse files Browse the repository at this point in the history
  • Loading branch information
chuanli1 authored and gfxVPLsdm committed Jan 14, 2025
1 parent 3088ee4 commit c8dd065
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion _studio/shared/umc/codec/vvc_dec/src/umc_vvc_frame.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022-2024 Intel Corporation
// Copyright (c) 2022-2025 Intel Corporation
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -528,6 +528,8 @@ namespace UMC_VVC_DECODER
{
switch (status)
{
case 0:
break;
case 1:
frame.AddError(UMC::ERROR_FRAME_MINOR);
break;
Expand Down

0 comments on commit c8dd065

Please sign in to comment.