-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding grammar for precondition a attributes #100
Open
hyavari
wants to merge
8
commits into
clux:master
Choose a base branch
from
hyavari:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
d02ee15
add grammer for precondition a attributes
f5a883a
revert grammar formating
e1bb441
adding test for precondition grammar
hyavari 4c47c18
adding grammar for MRCP sdp attributes
hyavari a9ee71d
adding order for MRCP atts
hyavari 1533dc0
Merge branch 'master' into master
clux c70619d
Merge branch 'master' into master
clux aa4ca13
Merge branch 'master' into master
hyavari File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
v=0 | ||
o=hossein 2890844526 2890844527 IN IP4 192.0.2.12 | ||
s=- | ||
c=IN IP4 192.0.2.12 | ||
t=0 0 | ||
m=application 9 TCP/MRCPv2 1 | ||
a=setup:active | ||
a=connection:existing | ||
a=resource:speechsynth | ||
a=cmid:1 | ||
m=audio 49170 RTP/AVP 0 96 | ||
a=rtpmap:0 pcmu/8000 | ||
a=rtpmap:96 telephone-event/8000 | ||
a=fmtp:96 0-15 | ||
a=sendrecv | ||
a=mid:1 | ||
m=application 9 TCP/MRCPv2 1 | ||
a=setup:active | ||
a=connection:existing | ||
a=resource:speechrecog | ||
a=cmid:1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
v=0 | ||
o=KSIC 564321 0 IN IP6 2001:56f:b006:abf7:8d62:bff:7d9c:79f9 | ||
s=SS VoLTE | ||
i=A VoLTE IMS Session | ||
c=IN IP6 2001:55f:b006:abf7:8d62:bff:7d9c:79f9 | ||
t=0 0 | ||
m=audio 30000 RTP/AVP 114 116 118 111 110 | ||
b=AS:50 | ||
b=RS:0 | ||
b=RR:2000 | ||
a=rtpmap:114 EVS/16000/1 | ||
a=fmtp:114 br=16.4; br-send=16.4; br-recv=16.4; bw=WB; bw-send=WB; bw-recv=WB; hf-only=0; max-red=220 | ||
a=rtpmap:116 AMR-WB/16000/1 | ||
a=fmtp:116 mode-set=8; mode-change-capability=2; max-red=220 | ||
a=rtpmap:111 telephone-event/16000 | ||
a=fmtp:111 0-15 | ||
a=rtpmap:118 AMR/8000/1 | ||
a=fmtp:118 mode-set=7; mode-change-capability=2; max-red=220 | ||
a=rtpmap:110 telephone-event/8000 | ||
a=fmtp:110 0-15 | ||
a=curr:qos local none | ||
a=curr:qos remote none | ||
a=des:qos mandatory local sendrecv | ||
a=des:qos none remote sendrecv | ||
a=sendrecv | ||
a=ptime:20 | ||
a=maxptime:240 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to be the part of the thing that you are actually adding. From a quick scan, looks sensible.
Are you able to add some tests for it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, I tried but not sure why tests are not runnable. I'll spend more time.