Component to display a video read by FFmpegVideoReader More...
#include <filmstro_ffmpeg_FFmpegVideoComponent.h>
Public Member Functions | |
FFmpegVideoComponent () | |
virtual | ~FFmpegVideoComponent () |
void | resized () override |
Callback when the component is resized. More... | |
void | paint (juce::Graphics &g) override |
void | timerCallback () override |
triggers repaint on message thread More... | |
void | displayNewFrame (const AVFrame *) override |
callback from FFmpegVideoReader to display a new frame More... | |
void | videoSizeChanged (const int width, const int height, const AVPixelFormat) override |
This is called whenever the size changed, so a framebuffer can be resized. More... | |
void | setVideoReader (FFmpegVideoReader *source) |
Set a video source for the component. More... | |
FFmpegVideoReader * | getVideoReader () const |
Get the video source for the component. More... | |
![]() | |
FFmpegVideoListener () | |
virtual | ~FFmpegVideoListener () |
virtual void | presentationTimestampChanged (const double) |
This will notify about advancing the presentation timestamp. More... | |
virtual void | readRawFrame (const AVFrame *) |
This is called when a frame is read from the video stream. More... | |
virtual void | videoFileChanged (const juce::File &newSource) |
This is called when the video source file has changed. More... | |
Component to display a video read by FFmpegVideoReader
FFmpegVideoComponent::FFmpegVideoComponent | ( | ) |
|
virtual |
|
overridevirtual |
callback from FFmpegVideoReader to display a new frame
Reimplemented from FFmpegVideoListener.
FFmpegVideoReader * FFmpegVideoComponent::getVideoReader | ( | ) | const |
Get the video source for the component.
|
override |
|
override |
Callback when the component is resized.
void FFmpegVideoComponent::setVideoReader | ( | FFmpegVideoReader * | source | ) |
Set a video source for the component.
|
override |
triggers repaint on message thread
|
overridevirtual |
This is called whenever the size changed, so a framebuffer can be resized.
Reimplemented from FFmpegVideoListener.