digiKam
videostripfilter.h
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is a part of digiKam project
4  * https://www.digikam.org
5  *
6  * Date : 2016-04-21
7  * Description : video thumbnails extraction based on ffmpeg
8  *
9  * Copyright (C) 2010 by Dirk Vanden Boer <dirk dot vdb at gmail dot com>
10  * Copyright (C) 2016-2018 by Maik Qualmann <metzpinguin at gmail dot com>
11  * Copyright (C) 2016-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
12  *
13  * This program is free software; you can redistribute it
14  * and/or modify it under the terms of the GNU General
15  * Public License as published by the Free Software Foundation;
16  * either version 2, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * ============================================================ */
24 
25 #ifndef DIGIKAM_VIDEO_STRIP_FILTER_H
26 #define DIGIKAM_VIDEO_STRIP_FILTER_H
27 
28 // Local includes
29 
30 #include "digikam_export.h"
31 
32 namespace Digikam
33 {
34 
35 class VideoFrame;
36 
37 class DIGIKAM_EXPORT VideoStripFilter
38 {
39 public:
40 
41  explicit VideoStripFilter();
43 
44  void process(VideoFrame& videoFrame);
45 
46 private:
47 
48  // Disable
49  VideoStripFilter(const VideoStripFilter&) = delete;
50  VideoStripFilter& operator=(const VideoStripFilter&) = delete;
51 };
52 
53 } // namespace Digikam
54 
55 #endif // DIGIKAM_VIDEO_STRIP_FILTER_H
Definition: videothumbwriter.h:38
Definition: videostripfilter.h:38
Definition: datefolderview.cpp:43