Skip to content

Commit

Permalink
SetStreamIndex
Browse files Browse the repository at this point in the history
  • Loading branch information
oldma3095 committed Dec 18, 2024
1 parent 13bb060 commit dec5570
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions program_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ func TestProgram(t *testing.T) {
require.Equal(t, 201, p.PmtPid())
p.SetPcrPid(301)
require.Equal(t, 301, p.PcrPid())
require.Equal(t, p.StartTime(), int64(-9223372036854775808))
require.Equal(t, p.EndTime(), int64(-9223372036854775808))
require.Equal(t, p.PtsWrapReference(), int64(-9223372036854775808))
require.Equal(t, p.StartTime(), NoPtsValue)
require.Equal(t, p.EndTime(), NoPtsValue)
require.Equal(t, p.PtsWrapReference(), NoPtsValue)
require.Equal(t, p.PtsWrapBehavior(), 0)
s := fc.NewStream(nil)
s.SetID(2)
Expand Down

0 comments on commit dec5570

Please sign in to comment.