From b80eb983ec034680f21f807b732f7729a3a1a2f7 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Fri, 4 Mar 2016 20:02:46 -0600 Subject: [PATCH] FS-8905 --- src/mod/formats/mod_local_stream/mod_local_stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/formats/mod_local_stream/mod_local_stream.c b/src/mod/formats/mod_local_stream/mod_local_stream.c index b1c75e87ee..80de543fca 100644 --- a/src/mod/formats/mod_local_stream/mod_local_stream.c +++ b/src/mod/formats/mod_local_stream/mod_local_stream.c @@ -1078,7 +1078,7 @@ static switch_status_t local_stream_file_read_video(switch_file_handle_t *handle } if (context->source->logo_opacity > 0 && context->source->logo_opacity < 100) { - switch_img_patch(frame->img, context->source->logo_img, x, y-1, context->source->logo_opacity); + switch_img_overlay(frame->img, context->source->logo_img, x, y-1, context->source->logo_opacity); } else { switch_img_patch(frame->img, context->source->logo_img, x, y-1); }