File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Libraries/LibMedia/FFmpeg Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ class MEDIA_API FFmpegVideoDecoder final : public VideoDecoder {
1818public:
1919 static DecoderErrorOr<NonnullOwnPtr<FFmpegVideoDecoder>> try_create (CodecID, ReadonlyBytes codec_initialization_data);
2020 FFmpegVideoDecoder (AVCodecContext* codec_context, AVPacket* packet, AVFrame* frame);
21- ~FFmpegVideoDecoder ();
21+ virtual ~FFmpegVideoDecoder () override ;
2222
23- DecoderErrorOr<void > receive_coded_data (AK::Duration timestamp, ReadonlyBytes coded_data) override ;
24- DecoderErrorOr<NonnullOwnPtr<VideoFrame>> get_decoded_frame () override ;
23+ virtual DecoderErrorOr<void > receive_coded_data (AK::Duration timestamp, ReadonlyBytes coded_data) override ;
24+ virtual DecoderErrorOr<NonnullOwnPtr<VideoFrame>> get_decoded_frame () override ;
2525
26- void flush () override ;
26+ virtual void flush () override ;
2727
2828private:
2929 AVCodecContext* m_codec_context;
You can’t perform that action at this time.
0 commit comments