dirkvdb / ffmpegthumbnailer

Lightweight video thumbnailer that can be used by file managers to create thumbnails for video files
GNU General Public License v2.0
524 stars 72 forks source link

histogram: simplify struct #202

Closed neheb closed 3 years ago

neheb commented 3 years ago

Use std::array and default initialize it. Allows to remove the constructor (actually it gets implicitly created).

Signed-off-by: Rosen Penev rosenp@gmail.com

dirkvdb commented 3 years ago

Thanks!