File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed
src/AvTranscoder/data/decoded Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -40,14 +40,6 @@ Frame::~Frame()
40
40
}
41
41
}
42
42
43
- unsigned char * Frame::getPlaneData (const size_t plane)
44
- {
45
- AVBufferRef* buffer = av_frame_get_plane_buffer (_frame, plane);
46
- if (buffer != NULL )
47
- return buffer->data ;
48
- return NULL ;
49
- }
50
-
51
43
void Frame::copyData (const Frame& frameToRef)
52
44
{
53
45
const int ret = av_frame_copy (_frame, &frameToRef.getAVFrame ());
Original file line number Diff line number Diff line change @@ -33,11 +33,6 @@ class AvExport Frame
33
33
*/
34
34
unsigned char ** getData () { return _frame->data ; }
35
35
36
- /* *
37
- * @return The specified data plane.
38
- */
39
- unsigned char * getPlaneData (const size_t plane);
40
-
41
36
/* *
42
37
* @brief Returns the size in byte.
43
38
* For video, size in bytes of each picture line.
You can’t perform that action at this time.
0 commit comments