Reset 重置数据,复用内存
()
| 138 | |
| 139 | // Reset 重置数据,复用内存 |
| 140 | func (av *AVFrame) Reset() { |
| 141 | av.RTP.Recycle() |
| 142 | av.AVCC.Recycle() |
| 143 | av.AUList.Recycle() |
| 144 | if av.ADTS != nil { |
| 145 | av.ADTS.Recycle() |
| 146 | av.ADTS = nil |
| 147 | } |
| 148 | av.Timestamp = 0 |
| 149 | av.IFrame = false |
| 150 | av.DataFrame.Reset() |
| 151 | } |
| 152 | |
| 153 | func (av *AVFrame) Assign(source *AVFrame) { |
| 154 | av.IFrame = source.IFrame |