diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-11-13 11:45:36 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-11-13 11:45:36 -0800 |
commit | 4441c868bfa3d831dafb8a1935d58a0e8fefd996 (patch) | |
tree | f947e5ce3e95b6e807776544e499d99b389f1ffa /src/rmd_get_frame.c | |
parent | cc41895fcc851ee96c457d566e5d987174f4d840 (diff) |
get_frame: s/rmdGetFrame/rmdGetFrames/
Mechanical rename to more accurate plural form
Diffstat (limited to 'src/rmd_get_frame.c')
-rw-r--r-- | src/rmd_get_frame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rmd_get_frame.c b/src/rmd_get_frame.c index cd49258..6f82b4a 100644 --- a/src/rmd_get_frame.c +++ b/src/rmd_get_frame.c @@ -399,7 +399,7 @@ static boolean paused(ProgData *pdata) * and image_buffer_ready is signaled for the cache/encode side to consume the * yuv buffer. */ -void *rmdGetFrame(ProgData *pdata) +void *rmdGetFrames(ProgData *pdata) { int blocks_w = pdata->enc_data->yuv.y_width / Y_UNIT_WIDTH, blocks_h = pdata->enc_data->yuv.y_height / Y_UNIT_WIDTH; @@ -413,7 +413,7 @@ void *rmdGetFrame(ProgData *pdata) int init_img1 = 0, init_img2 = 0, img_sel, d_buff; unsigned frameno = 0; - rmdThreadsSetName("rmdGetFrame"); + rmdThreadsSetName("rmdGetFrames"); img_sel = d_buff = pdata->args.full_shots; |