Skip to content

Commit

Permalink
obs-qsv11: Remove unused debug variable
Browse files Browse the repository at this point in the history
  • Loading branch information
RytoEX committed Nov 7, 2024
1 parent 3bcc40a commit 110efc0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions plugins/obs-qsv11/obs-qsv11.c
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,6 @@ static void parse_packet(struct obs_qsv *obsqsv, struct encoder_packet *packet,
bool bFrame = pBS->FrameType & MFX_FRAMETYPE_B;
bool pFrame = pBS->FrameType & MFX_FRAMETYPE_P;
int iType = iFrame ? 0 : (bFrame ? 1 : (pFrame ? 2 : -1));
//int64_t interval = obsqsv->params.nbFrames + 1;

info("parse packet:\n"
"\tFrameType: %d\n"
Expand Down Expand Up @@ -1162,7 +1161,6 @@ static void parse_packet_hevc(struct obs_qsv *obsqsv, struct encoder_packet *pac
bool pFrame = pBS->FrameType & MFX_FRAMETYPE_P;

int iType = iFrame ? 0 : (bFrame ? 1 : (pFrame ? 2 : -1));
int64_t interval = obsqsv->params.nbFrames + 1;

info("parse packet:\n"
"\tFrameType: %d\n"
Expand Down

0 comments on commit 110efc0

Please sign in to comment.