Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions adcom1/audio_placement.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ type AudioPlacement struct {
// Attribute:
// playmethod
// Type:
// integer
// integer array
// Definition:
// Playback method in use for this placement.
// Playback method(s) in use for this placement.
// Refer to List: Playback Methods.
PlayMethod PlaybackMethod `json:"playmethod,omitempty"`
PlayMethod []PlaybackMethod `json:"playmethod,omitempty"`

// Attribute:
// playend
Expand Down
6 changes: 3 additions & 3 deletions adcom1/video_placement.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ type VideoPlacement struct {
// Attribute:
// playmethod
// Type:
// integer
// integer array
// Definition:
// Playback method in use for this placement.
// Playback method(s) in use for this placement.
// Refer to List: Playback Methods.
PlayMethod PlaybackMethod `json:"playmethod,omitempty"`
PlayMethod []PlaybackMethod `json:"playmethod,omitempty"`

// Attribute:
// playend
Expand Down