From 6b9e40282ed6f5804039d729cbddc9c761556ab7 Mon Sep 17 00:00:00 2001
From: Luigi Rizzo <rizzo@icir.org>
Date: Mon, 14 Jul 2008 16:50:24 +0000
Subject: [PATCH] use ast_pthread_create_detached_background() instead of
 redoing it with separate calls

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@130732 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 channels/console_video.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/channels/console_video.c b/channels/console_video.c
index c82a9034f2..a7735a6656 100644
--- a/channels/console_video.c
+++ b/channels/console_video.c
@@ -1087,10 +1087,9 @@ void console_video_start(struct video_desc *env, struct ast_channel *owner)
 		env->out.bitrate = 65000;
 		ast_log(LOG_WARNING, "bitrate unset, forcing to %d\n", env->out.bitrate);
 	}
-	/* XXX below probably can use ast_pthread_create_detace\hed() */
-	ast_pthread_create_background(&env->vthread, NULL, video_thread, env);
-	/* detach the thread to make sure memory is freed on termination */
-	pthread_detach(env->vthread);
+	/* create the thread as detached so memory is freed on termination */
+	ast_pthread_create_detached_background(&env->vthread,
+		NULL, video_thread, env);
 }
 
 /*
-- 
GitLab