Skip to content

Commit

Permalink
OpenH264: throw out some logs to TRACE level
Browse files Browse the repository at this point in the history
  • Loading branch information
metalefty committed Nov 28, 2024
1 parent e87a7dd commit b95f6e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xrdp/xrdp_encoder_openh264.c
Original file line number Diff line number Diff line change
Expand Up @@ -274,12 +274,12 @@ xrdp_encoder_openh264_encode(void *handle, int session, int left, int top,
&pic1, &info);
if (status != 0)
{
LOG(LOG_LEVEL_INFO, "Failed to encode frame");
LOG(LOG_LEVEL_TRACE, "OpenH264: Failed to encode frame");
return 3;
}
if (info.eFrameType == videoFrameTypeSkip)
{
LOG(LOG_LEVEL_INFO, "frame was skipped!");
LOG(LOG_LEVEL_TRACE, "OpenH264: frame was skipped!");
return 4;
}
lcdata_bytes = 0;
Expand Down

0 comments on commit b95f6e9

Please sign in to comment.