summaryrefslogtreecommitdiff
path: root/main/frame.c
diff options
context:
space:
mode:
authorMatthew Nicholson <mnicholson@digium.com>2011-06-30 18:19:31 +0000
committerMatthew Nicholson <mnicholson@digium.com>2011-06-30 18:19:31 +0000
commit82d28452cac71a9ad1948714d541c96e96a8e7b4 (patch)
tree8ac35af661d03b844f6a0ef53e13a6396e09658c /main/frame.c
parent1d93d217f0f84c9f9e1173587390df95c97b9b56 (diff)
copy all flags on asterisk frames instead of just the timing flag
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@325815 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/frame.c')
-rw-r--r--main/frame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/frame.c b/main/frame.c
index d82a46313..bb32386ca 100644
--- a/main/frame.c
+++ b/main/frame.c
@@ -381,7 +381,7 @@ struct ast_frame *ast_frisolate(struct ast_frame *fr)
out->samples = fr->samples;
out->offset = fr->offset;
/* Copy the timing data */
- ast_copy_flags(out, fr, AST_FRFLAG_HAS_TIMING_INFO);
+ ast_copy_flags(out, fr, AST_FLAGS_ALL);
if (ast_test_flag(fr, AST_FRFLAG_HAS_TIMING_INFO)) {
out->ts = fr->ts;
out->len = fr->len;
@@ -505,7 +505,7 @@ struct ast_frame *ast_frdup(const struct ast_frame *f)
/* Must have space since we allocated for it */
strcpy(src, f->src);
}
- ast_copy_flags(out, f, AST_FRFLAG_HAS_TIMING_INFO);
+ ast_copy_flags(out, f, AST_FLAGS_ALL);
out->ts = f->ts;
out->len = f->len;
out->seqno = f->seqno;