diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-01-29 12:42:54 +0100 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2013-02-07 07:18:56 +0100 |
commit | 1f8bf163e4b430d1a6e14d8867f3d47f50d5425e (patch) | |
tree | 9491f1c318176280ce93135f734b869988618f6b /cmdutils.c | |
parent | 108ca6fad1e0e9af8d6337f908bfd23807b7fbd6 (diff) | |
download | ffmpeg-1f8bf163e4b430d1a6e14d8867f3d47f50d5425e.tar.gz |
aasc: fix output for msrle compression.
The bottom line was invalid before.
CC:libav-stable@libav.org
(cherry picked from commit da7baaaae79b4d7d715d35ea6bcfbdd149edc177)
Conflicts:
cmdutils.c
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils.c b/cmdutils.c index 45418afd91..cc165bd597 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -1566,7 +1566,7 @@ static int alloc_buffer(FrameBuffer **pool, AVCodecContext *s, FrameBuffer **pbu /* XXX this shouldn't be needed, but some tests break without this line * those decoders are buggy and need to be fixed. * the following tests fail: - * cdgraphics, ansi, aasc, qtrle-1bit + * cdgraphics, ansi, qtrle-1bit */ memset(buf->base[0], 128, ret); |