-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed invalid PMT and PAT version increments #38
Conversation
74bcbe8
to
e6fbae1
Compare
@@ -52,11 +53,18 @@ func TestMuxer_generatePAT(t *testing.T) { | |||
assert.Equal(t, MpegTsPacketSize, muxer.patBytes.Len()) | |||
assert.Equal(t, patExpectedBytes(0, 0), muxer.patBytes.Bytes()) | |||
|
|||
// to check version number increment | |||
// Version number shouldn't change |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be great to do the same test for PMT. Otherwise the code looks good :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you're right I've added the same test for PMT 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think now it's ready to merge :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, you've done it already :)
e6fbae1
to
e986edc
Compare
No description provided.