mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-04-21 03:55:05 +00:00
Fix log message to show source and dest sizes
This commit is contained in:
parent
48f1c6c2d6
commit
0ddd0b366c
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ static bool in_frame_to_png(
|
|||
SWS_FAST_BILINEAR, 0, 0, 0);
|
||||
|
||||
AVFrame * rgbFrame = av_frame_alloc();
|
||||
LOGV("Image frame width: %d height: %d scaling to %d x %d", codecCtx->width, codecCtx->height, targetWidth, targetHeight);
|
||||
LOGV("Image frame width: %d height: %d scaling to %d x %d", *inframe->linesize, inframe->height, targetWidth, targetHeight);
|
||||
rgbFrame->width = targetWidth;
|
||||
rgbFrame->height = targetHeight;
|
||||
rgbFrame->format = AV_PIX_FMT_RGB24;
|
||||
|
|
Loading…
Add table
Reference in a new issue