Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-21 05:54:49 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-03-21 05:54:49 +0400
commit3eaf7120534122a651b8ddeebe3af79786337bed (patch)
tree22ab3f9c25ef107cb8dd88c67f07a51cb7c483e9 /libavcodec/sgienc.c
parent0ebd83617fe008b7e9766f659cc3d9618b2d80d2 (diff)
sgienc: fix packet size.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/sgienc.c')
-rw-r--r--libavcodec/sgienc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sgienc.c b/libavcodec/sgienc.c
index f72a320862..42202a46b2 100644
--- a/libavcodec/sgienc.c
+++ b/libavcodec/sgienc.c
@@ -113,7 +113,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
else // assume ff_rl_encode() produces at most 2x size of input
length += tablesize * 2 + depth * height * (2 * width + 1);
- if ((ret = ff_alloc_packet(pkt, length)) < 0) {
+ if ((ret = ff_alloc_packet(pkt, bytes_per_channel * length)) < 0) {
av_log(avctx, AV_LOG_ERROR, "Error getting output packet of size %d.\n", length);
return ret;
}