Skip to content

Commit

Permalink
Avoid setting reserved bits in test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
cptpcrd committed Dec 18, 2024
1 parent cbf53eb commit 03fc4e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions codecs/vp9_packet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,15 +193,15 @@ func TestVP9Packet_Unmarshal(t *testing.T) {
err: errShortPacket,
},
"ScalabilityMissingNG": {
b: []byte("b00200000000"),
b: []byte("b00800000000"),
err: errShortPacket,
},
"ScalabilityMissingTemporalLayerIDs": {
b: []byte("20B0"),
b: []byte("20H0"),
err: errShortPacket,
},
"ScalabilityMissingReferenceIndices": {
b: []byte("20B007"),
b: []byte("20H007"),
err: errShortPacket,
},
}
Expand Down

0 comments on commit 03fc4e9

Please sign in to comment.