diff options
| author | 2024-02-02 22:57:22 -0500 | |
|---|---|---|
| committer | 2024-02-02 22:57:22 -0500 | |
| commit | 0b7a612a9baf49765db8b127e696913100b70f5f (patch) | |
| tree | 78680777023d989b9148dd98a5a6e489e49b022a /src/buffer | |
| parent | b100eb175e0cfa59a15c4125f26ab5474c2347ec (diff) | |
| download | camu-0b7a612a9baf49765db8b127e696913100b70f5f.tar.gz camu-0b7a612a9baf49765db8b127e696913100b70f5f.tar.bz2 camu-0b7a612a9baf49765db8b127e696913100b70f5f.zip | |
wip
- Getting somewhere with the client
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/buffer')
| -rw-r--r-- | src/buffer/audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer/audio.c b/src/buffer/audio.c index ce7a697..037d977 100644 --- a/src/buffer/audio.c +++ b/src/buffer/audio.c @@ -170,7 +170,7 @@ static bool push_internal(struct camu_audio_buffer *buf, u8 **data, s32 sample_c static void push_av_frame_internal(struct camu_audio_buffer *buf, AVFrame *frame) { // It doesn't matter if there's a race here with flush(), as long - // as any frame is from the same stream. + // as any pushed frame is from the same stream. // A reset() must finish before any data is pushed. if (al_atomic_u8_load(&buf->flow, AL_ATOMIC_RELAXED) == FLOWING) { AVStream *stream = buf->stream->av.stream; |