Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove missingFrames arg from GMP API #3793

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions module/gmp-openh264.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,6 @@ class OpenH264VideoDecoder : public GMPVideoDecoder, public RefCounted {
}

virtual void Decode (GMPVideoEncodedFrame* inputFrame,
bool missingFrames,
const uint8_t* aCodecSpecificInfo,
uint32_t aCodecSpecificInfoLength,
int64_t renderTimeMs = -1) {
Expand Down Expand Up @@ -939,7 +938,6 @@ class OpenH264VideoDecoder : public GMPVideoDecoder, public RefCounted {
worker_thread_->Post (WrapTaskRefCounted (
this, &OpenH264VideoDecoder::Decode_w,
inputFrame,
missingFrames,
dState,
renderTimeMs));
if (dState) {
Expand Down Expand Up @@ -1006,7 +1004,6 @@ class OpenH264VideoDecoder : public GMPVideoDecoder, public RefCounted {
}

void Decode_w (GMPVideoEncodedFrame* inputFrame,
bool missingFrames,
DECODING_STATE& dState,
int64_t renderTimeMs = -1) {
GMPLOG (GL_DEBUG, "Frame decode on worker thread length = "
Expand Down
Loading