rav1e: fix building after API break in rav1e

7791bb185b
renamed Packet::number to Packet::input_frameno
This commit is contained in:
Mathieu Duponchelle 2019-06-13 00:52:12 +02:00
parent 4327ad84e9
commit 99aca7469e

View file

@ -166,10 +166,10 @@ impl Context {
match self {
Context::Eight(ref mut context) => context
.receive_packet()
.map(|packet| (packet.frame_type, packet.number, packet.data)),
.map(|packet| (packet.frame_type, packet.input_frameno, packet.data)),
Context::Sixteen(ref mut context) => context
.receive_packet()
.map(|packet| (packet.frame_type, packet.number, packet.data)),
.map(|packet| (packet.frame_type, packet.input_frameno, packet.data)),
}
}