File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
src/AvTranscoder/data/decoded Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,9 @@ class AvExport AudioFrame : public Frame
66
66
void assign (const unsigned char * ptrValue);
67
67
68
68
private:
69
+ /* *
70
+ * @brief Allocate the audio buffer of the frame.
71
+ */
69
72
void allocateAVSample (const AudioFrameDesc& ref);
70
73
};
71
74
}
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ class AvExport Frame
18
18
public:
19
19
/* *
20
20
* @brief Allocate an empty frame.
21
+ * @warn This only allocates the AVFrame itself, not the data buffers.
21
22
*/
22
23
Frame ();
23
24
Original file line number Diff line number Diff line change @@ -66,6 +66,9 @@ class AvExport VideoFrame : public Frame
66
66
void assign (const unsigned char * ptrValue);
67
67
68
68
private:
69
+ /* *
70
+ * @brief Allocate the image buffer of the frame.
71
+ */
69
72
void allocateAVPicture (const VideoFrameDesc& desc);
70
73
};
71
74
}
You can’t perform that action at this time.
0 commit comments