File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed
src/AvTranscoder/data/decoded Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ struct AvExport AudioFrameDesc
35
35
*/
36
36
class AvExport AudioFrame : public IFrame
37
37
{
38
+ private:
39
+ AudioFrame (const AudioFrame& otherFrame);
40
+ AudioFrame& operator =(const AudioFrame& otherFrame);
41
+
38
42
public:
39
43
AudioFrame (const AudioFrameDesc& desc, const bool forceDataAllocation = true );
40
44
~AudioFrame ();
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ namespace avtranscoder
18
18
*/
19
19
class AvExport IFrame
20
20
{
21
+ private:
22
+ IFrame (const IFrame& otherFrame);
23
+ IFrame& operator =(const IFrame& otherFrame);
24
+
21
25
public:
22
26
/* *
23
27
* @brief Allocate an empty frame.
Original file line number Diff line number Diff line change @@ -42,6 +42,11 @@ struct AvExport VideoFrameDesc
42
42
*/
43
43
class AvExport VideoFrame : public IFrame
44
44
{
45
+ private:
46
+ VideoFrame (const VideoFrame& otherFrame);
47
+ VideoFrame& operator =(const VideoFrame& otherFrame);
48
+
49
+
45
50
public:
46
51
VideoFrame (const VideoFrameDesc& desc, const bool forceDataAllocation = true );
47
52
~VideoFrame ();
You can’t perform that action at this time.
0 commit comments