MCPcopy Create free account
hub / github.com/cisco/openh264 / onDecodeFrame

Method onDecodeFrame

test/api/thread_decoder_test.cpp:62–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60 SHA1Reset (&ctx_);
61 }
62 virtual void onDecodeFrame (const Frame& frame) {
63 const Plane& y = frame.y;
64 const Plane& u = frame.u;
65 const Plane& v = frame.v;
66 UpdateHashFromPlane (&ctx_, y.data, y.width, y.height, y.stride);
67 UpdateHashFromPlane (&ctx_, u.data, u.width, u.height, u.stride);
68 UpdateHashFromPlane (&ctx_, v.data, v.width, v.height, v.stride);
69 }
70 protected:
71 SHA1Context ctx_;
72};

Callers

nothing calls this directly

Calls 1

UpdateHashFromPlaneFunction · 0.70

Tested by

no test coverage detected