Skip to content
Snippets Groups Projects
Commit 097ea6db authored by Reimar Döffinger's avatar Reimar Döffinger
Browse files

100l, fix missing decrement on split PGS packets.

Originally committed as revision 25810 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9d252137
No related branches found
No related tags found
No related merge requests found
...@@ -182,6 +182,7 @@ static int parse_picture_segment(AVCodecContext *avctx, ...@@ -182,6 +182,7 @@ static int parse_picture_segment(AVCodecContext *avctx,
memcpy(ctx->picture.rle + ctx->picture.rle_data_len, buf, buf_size); memcpy(ctx->picture.rle + ctx->picture.rle_data_len, buf, buf_size);
ctx->picture.rle_data_len += buf_size; ctx->picture.rle_data_len += buf_size;
ctx->picture.rle_remaining_len -= buf_size;
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment