mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 18:32:22 +00:00
rtmpproto: Consistently use the right prev_pkt array
prev_pkt[0] is used for input packets, while prev_pkt[1] is used for output. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
0d3784396b
commit
647d655d19
@ -406,7 +406,7 @@ static int read_connect(URLContext *s, RTMPContext *rt)
|
||||
GetByteContext gbc;
|
||||
|
||||
if ((ret = ff_rtmp_packet_read(rt->stream, &pkt, rt->in_chunk_size,
|
||||
rt->prev_pkt[1])) < 0)
|
||||
rt->prev_pkt[0])) < 0)
|
||||
return ret;
|
||||
cp = pkt.data;
|
||||
bytestream2_init(&gbc, cp, pkt.size);
|
||||
|
Loading…
Reference in New Issue
Block a user