mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
bytereader: Use concistant derefence method
This is minor style fix to not mix *var and var[N].
This commit is contained in:
parent
d3b2f6e4b8
commit
d99e621533
1 changed files with 1 additions and 1 deletions
|
@ -783,7 +783,7 @@ _scan_for_start_code (const guint8 * data, guint offset, guint size)
|
|||
pdata += 3;
|
||||
} else if (pdata[1]) {
|
||||
pdata += 2;
|
||||
} else if (*pdata || pdata[2] != 1) {
|
||||
} else if (pdata[0] || pdata[2] != 1) {
|
||||
pdata++;
|
||||
} else {
|
||||
return (pdata - data + offset);
|
||||
|
|
Loading…
Reference in a new issue