]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-8716 actually fix typo
authorAnthony Minessale <anthm@freeswitch.org>
Fri, 8 Jan 2016 15:57:52 +0000 (09:57 -0600)
committerAnthony Minessale <anthm@freeswitch.org>
Fri, 8 Jan 2016 15:57:52 +0000 (09:57 -0600)
src/switch_core_media.c

index 6e224b3b0fb0e08558dcadf5a44ce09e699c3276..be836ab228bd5c65c0bdf7e057d42a482f8debfc 100644 (file)
@@ -10993,7 +10993,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_session_read_video_frame(switch_core
 
                decode_status = switch_core_codec_decode_video((*frame)->codec, *frame);
                
-               if ((*frame)->img) && switch_channel_test_flag(session->channel, CF_VIDEO_DEBUG_READ)) {
+               if ((*frame)->img && switch_channel_test_flag(session->channel, CF_VIDEO_DEBUG_READ)) {
                        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "IMAGE %dx%d %dx%d\n", 
                                                          (*frame)->img->w, (*frame)->img->h, (*frame)->img->d_w, (*frame)->img->d_h);
                }