add new flag to frames to denote pass thru frames that are not audio

This commit is contained in:
Anthony Minessale
2011-09-09 13:56:04 -05:00
parent bcd1e14711
commit cb9abe0268
3 changed files with 21 additions and 1 deletions

View File

@@ -1203,7 +1203,8 @@ typedef enum {
SFF_PROXY_PACKET = (1 << 5),
SFF_DYNAMIC = (1 << 6),
SFF_ZRTP = (1 << 7),
SFF_UDPTL_PACKET = (1 << 8)
SFF_UDPTL_PACKET = (1 << 8),
SFF_NOT_AUDIO = (1 << 9)
} switch_frame_flag_enum_t;
typedef uint32_t switch_frame_flag_t;