diff options
author | Mark Harris <mark.hsj@gmail.com> | 2013-10-11 17:22:00 -0700 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2013-10-11 17:27:49 -0700 |
commit | 970d0529eeaa97f7c06fb37d6bd1b5658ad1e68f (patch) | |
tree | 41d08e7edf04088999d838ec1faffd6e0a1b4ad2 /tests | |
parent | ed4632345ef8edd8ce07403bb4a4996d8c8f440a (diff) | |
download | opus-970d0529eeaa97f7c06fb37d6bd1b5658ad1e68f.tar.gz |
Correct opus_packet_parse code 0 packet tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_opus_api.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_opus_api.c b/tests/test_opus_api.c index 2b467810..fa1dabe7 100644 --- a/tests/test_opus_api.c +++ b/tests/test_opus_api.c @@ -724,6 +724,7 @@ opus_int32 test_parse(void) /*code 0*/ for(i=0;i<64;i++) { + packet[0]=i<<2; UNDEFINE_FOR_PARSE ret=opus_packet_parse(packet,4,&toc,frames,size,&payload_offset); cfgs++; |