(pts uint32, raw util.IBytes)
| 66 | } |
| 67 | |
| 68 | func (av *Audio) WriteRawBytes(pts uint32, raw util.IBytes) { |
| 69 | curValue := av.Value |
| 70 | curValue.BytesIn += raw.Len() |
| 71 | av.Value.AUList.Push(av.GetFromPool(raw)) |
| 72 | av.generateTimestamp(pts) |
| 73 | av.Flush() |
| 74 | } |
| 75 | |
| 76 | func (av *Audio) WriteAVCC(ts uint32, frame *util.BLL) { |
| 77 | av.Value.WriteAVCC(ts, frame) |
nothing calls this directly
no test coverage detected