lib/xiph/OggSyncState: fix indent
This commit is contained in:
parent
496184b1bc
commit
c450f644e6
@ -7,16 +7,16 @@
|
|||||||
bool
|
bool
|
||||||
OggSyncState::Feed(size_t size)
|
OggSyncState::Feed(size_t size)
|
||||||
{
|
{
|
||||||
char *buffer = ogg_sync_buffer(&oy, size);
|
char *buffer = ogg_sync_buffer(&oy, size);
|
||||||
if (buffer == nullptr)
|
if (buffer == nullptr)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
size_t nbytes = reader.Read(buffer, size);
|
size_t nbytes = reader.Read(buffer, size);
|
||||||
if (nbytes == 0)
|
if (nbytes == 0)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
ogg_sync_wrote(&oy, nbytes);
|
ogg_sync_wrote(&oy, nbytes);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
Loading…
Reference in New Issue
Block a user