Commit 07d4f557 authored by Michael Niedermayer's avatar Michael Niedermayer

append_packet_chunked: Remove unused initialization.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 946cbf04
......@@ -283,7 +283,7 @@ static int append_packet_chunked(AVIOContext *s, AVPacket *pkt, int size)
int64_t chunk_size = size;
int orig_pos = pkt->pos; // av_grow_packet might reset pos
int orig_size = pkt->size;
int ret = 0;
int ret;
do {
int prev_size = pkt->size;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment