1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

append_packet_chunked: Remove unused initialization.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2013-03-16 17:03:41 +01:00
parent 946cbf04ee
commit 07d4f557e5

View File

@@ -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;