summaryrefslogtreecommitdiff
path: root/vendor/github.com/pion/webrtc/v3/pkg/media/media.go
blob: bcd7e3389dea36927eb12e10f17e1abc3f3b9f03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Package media provides media writer and filters
package media

import (
	"time"

	"github.com/pion/rtp"
)

// A Sample contains encoded media and timing information
type Sample struct {
	Data      []byte
	Timestamp time.Time
	Duration  time.Duration
}

// Writer defines an interface to handle
// the creation of media files
type Writer interface {
	// Add the content of an RTP packet to the media
	WriteRTP(packet *rtp.Packet) error
	// Close the media
	// Note: Close implementation must be idempotent
	Close() error
}