MCPcopy Create free account
hub / github.com/RetroShare/RetroShare / av_frame_alloc

Function av_frame_alloc

plugins/VOIP/gui/VideoProcessor.cpp:110–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110AVFrame *av_frame_alloc(void)
111{
112 AVFrame *frame = (AVFrame *)av_mallocz(sizeof(*frame));
113
114 if (!frame)
115 return NULL;
116
117 get_frame_defaults(frame);
118
119 return frame;
120}
121
122
123void av_frame_free(AVFrame **frame)

Callers 1

VideoProcessor.cppFile · 0.85

Calls 1

get_frame_defaultsFunction · 0.85

Tested by

no test coverage detected