Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
FFmpeg Thumbnailer
Commits
9e0e0c0d
Commit
9e0e0c0d
authored
Aug 13, 2022
by
Nicolas Fella
Browse files
Don't reimplement ThumbCreator::flags()
It does the same thing as the default implementation
parent
e9891fa1
Pipeline
#217543
passed with stage
in 53 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
ffmpegthumbnailer.cpp
View file @
9e0e0c0d
...
...
@@ -171,11 +171,6 @@ bool FFMpegThumbnailer::create(const QString& path, int width, int /*height*/, Q
return
false
;
}
ThumbCreator
::
Flags
FFMpegThumbnailer
::
flags
()
const
{
return
(
Flags
)(
None
);
}
void
FFMpegThumbnailer
::
updateSequenceIndexWraparoundPoint
(
float
offset
)
{
float
wraparoundPoint
=
offset
;
...
...
ffmpegthumbnailer.h
View file @
9e0e0c0d
...
...
@@ -30,7 +30,6 @@ public:
FFMpegThumbnailer
();
~
FFMpegThumbnailer
()
override
;
bool
create
(
const
QString
&
path
,
int
width
,
int
height
,
QImage
&
img
)
override
;
Flags
flags
()
const
override
;
private:
void
updateSequenceIndexWraparoundPoint
(
float
offset
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment