mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
01. Support GB config as StreamCaster. 02. Support disable GB by --gb28181=off. 03. Add utests for SIP examples. 04. Wireshark plugin to decode TCP/9000 as rtp.rfc4571 05. Support MPEGPS program stream codec. 06. Add utest for PS stream codec. 07. Decode MPEGPS packet stream. 08. Carry RTP and PS packet as helper in PS message. 09. Support recover from error mode. 10. Support process by a pack of PS/TS messages. 11. Add statistic for recovered and msgs dropped. 12. Recover from err position fastly. 13. Define state machine for GB session. 14. Bind context to GB session. 15. Re-invite when media disconnected. 16. Update GitHub actions with GB28181. 17. Support parse CANDIDATE by env or pip. 18. Support mux GB28181 to RTMP. 19. Support regression test by srs-bench.
25 lines
663 B
Go
25 lines
663 B
Go
// Package pool contains helpers for pooling structures distinguishable by
|
|
// size.
|
|
//
|
|
// Quick example:
|
|
//
|
|
// import "github.com/gobwas/pool"
|
|
//
|
|
// func main() {
|
|
// // Reuse objects in logarithmic range from 0 to 64 (0,1,2,4,6,8,16,32,64).
|
|
// p := pool.New(0, 64)
|
|
//
|
|
// buf, n := p.Get(10) // Returns buffer with 16 capacity.
|
|
// if buf == nil {
|
|
// buf = bytes.NewBuffer(make([]byte, n))
|
|
// }
|
|
// defer p.Put(buf, n)
|
|
//
|
|
// // Work with buf.
|
|
// }
|
|
//
|
|
// There are non-generic implementations for pooling:
|
|
// - pool/pbytes for []byte reuse;
|
|
// - pool/pbufio for *bufio.Reader and *bufio.Writer reuse;
|
|
//
|
|
package pool
|