Compare commits
2 Commits
994c0995e0
...
4187d0dfda
Author | SHA1 | Date |
---|---|---|
|
4187d0dfda | |
|
a4e70df617 |
|
@ -28,7 +28,7 @@ func Test_Demux(t *testing.T) {
|
|||
So(audioStream, ShouldBeNil)
|
||||
So(stream.StreamId, ShouldEqual, 0)
|
||||
So(stream.Pts, ShouldEqual, 0)
|
||||
So(stream.CodecInfo.CodecName, ShouldEqual, "mp3")
|
||||
So(stream.CodecInfo.CodecName, ShouldBeIn, []string{"mp3", "mp3float"})
|
||||
So(stream.CodecInfo.Type, ShouldEqual, Audio)
|
||||
audioStream = stream
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ func Test_Muxer(t *testing.T) {
|
|||
So(audioStream, ShouldBeNil)
|
||||
So(stream.StreamId, ShouldEqual, 0)
|
||||
So(stream.Pts, ShouldEqual, 0)
|
||||
So(stream.CodecInfo.CodecName, ShouldEqual, "mp3")
|
||||
So(stream.CodecInfo.CodecName, ShouldBeIn, []string{"mp3", "mp3float"})
|
||||
So(stream.CodecInfo.Type, ShouldEqual, Audio)
|
||||
audioStream = stream
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit f158770a793e28c093dc22c2a9ef0af20bdd804f
|
||||
Subproject commit d481e19a7c9f8d849bb3f6a69854ec711dc894e8
|
Loading…
Reference in New Issue