Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libjitsi
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZRTP
libjitsi
Commits
5651c5b8
Commit
5651c5b8
authored
11 years ago
by
Boris Grozev
Browse files
Options
Downloads
Patches
Plain Diff
Fix a bug in calculating the VP8 Payload Descriptor size
parent
d9d3a6cd
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/org/jitsi/impl/neomedia/codec/video/vp8/DePacketizer.java
+1
-1
1 addition, 1 deletion
...org/jitsi/impl/neomedia/codec/video/vp8/DePacketizer.java
with
1 addition
and
1 deletion
src/org/jitsi/impl/neomedia/codec/video/vp8/DePacketizer.java
+
1
−
1
View file @
5651c5b8
...
@@ -283,7 +283,7 @@ public static int getSize(byte[] input, int offset) throws Exception
...
@@ -283,7 +283,7 @@ public static int getSize(byte[] input, int offset) throws Exception
if
((
input
[
offset
]
&
X_BIT
)
==
0
)
if
((
input
[
offset
]
&
X_BIT
)
==
0
)
return
1
;
return
1
;
int
size
=
1
;
int
size
=
2
;
if
((
input
[
offset
+
1
]
&
I_BIT
)
!=
0
)
if
((
input
[
offset
+
1
]
&
I_BIT
)
!=
0
)
{
{
size
++;
size
++;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment