| 1234567891011121314151617181920212223242526272829 |
- // SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
- // SPDX-License-Identifier: MIT
- package codecs
- func min(a, b int) int {
- if a < b {
- return a
- }
- return b
- }
- // audioDepacketizer is a mixin for audio codec depacketizers
- type audioDepacketizer struct{}
- func (d *audioDepacketizer) IsPartitionTail(_ bool, _ []byte) bool {
- return true
- }
- func (d *audioDepacketizer) IsPartitionHead(_ []byte) bool {
- return true
- }
- // videoDepacketizer is a mixin for video codec depacketizers
- type videoDepacketizer struct{}
- func (d *videoDepacketizer) IsPartitionTail(marker bool, _ []byte) bool {
- return marker
- }
|