diff options
Diffstat (limited to 'src/buffer/video_null.h')
| -rw-r--r-- | src/buffer/video_null.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer/video_null.h b/src/buffer/video_null.h index da9d969..90eb2c2 100644 --- a/src/buffer/video_null.h +++ b/src/buffer/video_null.h @@ -9,7 +9,7 @@ struct camu_video_buffer { struct camu_codec_stream *stream; f64 seek_pts; - bool single_frame; + bool is_static; f64 avg_frame_duration; #ifdef CAMU_SCREEN_THREADED atomic(bool) ref; @@ -28,7 +28,7 @@ AL_IGNORE_WARNING("-Wunused-function") static bool camu_video_buffer_init(struct camu_video_buffer *buf, struct camu_clock *clock) { (void)clock; - buf->single_frame = true; + buf->is_static = true; buf->avg_frame_duration = 0.0; #ifdef CAMU_SCREEN_THREADED al_atomic_store(bool)(&buf->ref, false, AL_ATOMIC_RELAXED); |