+
+ // if we already got a SWS context, let's realloc if is not re-useable
+ if (ci->toRGB_convert_ctx != NULL) {
+ if ((ci->sws_pix_fmt != pix_fmt) ||
+ (ci->sws_width != width) || (ci->sws_height != height)) {
+ sws_freeContext(ci->toRGB_convert_ctx);
+ ci->toRGB_convert_ctx = NULL;
+ }
+ }
+ if (ci->toRGB_convert_ctx == NULL) {
+ ci->sws_pix_fmt = pix_fmt;
+ ci->sws_width = width;
+ ci->sws_height = height;
+ ci->toRGB_convert_ctx = sws_getContext(
+ ci->sws_width, ci->sws_height,
+ ci->sws_pix_fmt,
+ ci->sws_width, ci->sws_height,
+ PIX_FMT_RGB24,
+ sws_flags, NULL, NULL, NULL);
+ if (ci->toRGB_convert_ctx == NULL) {
+ av_log(NULL, AV_LOG_ERROR,
+ "Cannot initialize the toRGB conversion context\n");
+ exit(1);
+ }
+ }
+ // img_convert parameters are 2 first destination, then 4 source
+ // sws_scale parameters are context, 4 first source, then 2 destination
+ sws_scale(ci->toRGB_convert_ctx,
+ picture->data, picture->linesize, 0, ci->sws_height,
+ picture1.data, picture1.linesize);
+