mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 04:30:28 +00:00
Merged revisions 66074 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r66074 | file | 2007-05-24 18:16:58 -0400 (Thu, 24 May 2007) | 2 lines Fix slinfactory logic when dealing with frames coming in that may already be in the signed linear format. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@66109 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -72,10 +72,12 @@ int ast_slinfactory_feed(struct ast_slinfactory *sf, struct ast_frame *f)
|
|||||||
sf->format = f->subclass;
|
sf->format = f->subclass;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
if (!(begin_frame = ast_translate(sf->trans, f, 0)) || !(duped_frame = ast_frdup(begin_frame)))
|
||||||
|
|
||||||
if ((sf->trans && (!(begin_frame = ast_translate(sf->trans, f, 0)))) || (!(duped_frame = ast_frdup(begin_frame))))
|
|
||||||
return 0;
|
return 0;
|
||||||
|
} else {
|
||||||
|
if (!(duped_frame = ast_frdup(f)))
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
x = 0;
|
x = 0;
|
||||||
AST_LIST_TRAVERSE(&sf->queue, frame_ptr, frame_list)
|
AST_LIST_TRAVERSE(&sf->queue, frame_ptr, frame_list)
|
||||||
|
Reference in New Issue
Block a user