From a5f333ac7b03d301072568249595a16e6fe27535 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 20 May 2017 12:33:13 +0200 Subject: [PATCH] Correct some comments. --- pbo_frame_allocator.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pbo_frame_allocator.h b/pbo_frame_allocator.h index 118ecd6..8f1f9a9 100644 --- a/pbo_frame_allocator.h +++ b/pbo_frame_allocator.h @@ -38,11 +38,11 @@ public: bmusb::PixelFormat pixel_format; // The second set is only used for the second field of interlaced inputs. - GLuint tex_y[2], tex_cbcr[2]; // For FRAME_FORMAT_YCBCR_8BIT. - GLuint tex_v210[2], tex_444[2]; // For FRAME_FORMAT_YCBCR_10BIT. - GLuint tex_rgba[2]; // For FRAME_FORMAT_RGBA_8BIT. + GLuint tex_y[2], tex_cbcr[2]; // For PixelFormat_8BitYCbCr. + GLuint tex_v210[2], tex_444[2]; // For PixelFormat_10BitYCbCr. + GLuint tex_rgba[2]; // For PixelFormat_8BitBGRA. GLuint last_width[2], last_height[2]; - GLuint last_v210_width[2]; // FRAME_FORMAT_YCBCR_10BIT. + GLuint last_v210_width[2]; // PixelFormat_10BitYCbCr. bool last_interlaced, last_has_signal, last_is_connected; unsigned last_frame_rate_nom, last_frame_rate_den; }; -- 2.39.2