summaryrefslogtreecommitdiff
path: root/channels/console_video.c
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2012-02-29 16:52:47 +0000
committerTerry Wilson <twilson@digium.com>2012-02-29 16:52:47 +0000
commita9d607a35764d93790172cab1f630e14fb8e043c (patch)
treedadea55813cfc525898844c51eec824d468455cb /channels/console_video.c
parent0b988da21c1ec856b7b8bad2434bf93498d17cfd (diff)
Opaquify ast_channel structs and lists
Review: https://reviewboard.asterisk.org/r/1773/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@357542 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/console_video.c')
-rw-r--r--channels/console_video.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/channels/console_video.c b/channels/console_video.c
index 25e095f68..db07fccee 100644
--- a/channels/console_video.c
+++ b/channels/console_video.c
@@ -976,12 +976,12 @@ static void *video_thread(void *arg)
ast_channel_lock(chan);
/* AST_LIST_INSERT_TAIL is only good for one frame, cannot use here */
- if (chan->readq.first == NULL) {
- chan->readq.first = f;
+ if (ast_channel_readq(chan).first == NULL) {
+ ast_channel_readq(chan).first = f;
} else {
- chan->readq.last->frame_list.next = f;
+ ast_channel_readq(chan).last->frame_list.next = f;
}
- chan->readq.last = p;
+ ast_channel_readq(chan).last = p;
/*
* more or less same as ast_queue_frame, but extra
* write on the alertpipe to signal frames.