GUAC-236: Add missing comment for use of sws_scale().

This commit is contained in:
Michael Jumper 2016-03-11 18:22:31 -08:00
parent cb1d5e03b5
commit 7575506443

View File

@ -348,6 +348,7 @@ void guacenc_video_prepare_frame(guacenc_video* video, guacenc_buffer* buffer) {
return; return;
} }
/* Apply scaling, copying the source frame to the destination */
sws_scale(sws, (const uint8_t* const*) src->data, src->linesize, sws_scale(sws, (const uint8_t* const*) src->data, src->linesize,
0, src->height, dst->data, dst->linesize); 0, src->height, dst->data, dst->linesize);