diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-10-05 14:12:42 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-11 00:32:25 +0100 |
commit | da9cea77e314dad2fbc615a76085a0c330741f92 (patch) | |
tree | 7ddbdbf1749d1ee7c66c83f76f66bd50367b246d /libavcodec/bitstream.c | |
parent | 2e87b4c51152e0241cae7f655d53920029a0e632 (diff) | |
download | ffmpeg-da9cea77e314dad2fbc615a76085a0c330741f92.tar.gz |
Fix a bunch of common typos.
Diffstat (limited to 'libavcodec/bitstream.c')
-rw-r--r-- | libavcodec/bitstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bitstream.c b/libavcodec/bitstream.c index 68ea3e0bda..14e392f34d 100644 --- a/libavcodec/bitstream.c +++ b/libavcodec/bitstream.c @@ -103,7 +103,7 @@ static int alloc_table(VLC *vlc, int size, int use_static) vlc->table_size += size; if (vlc->table_size > vlc->table_allocated) { if(use_static) - abort(); //cant do anything, init_vlc() is used with too little memory + abort(); // cannot do anything, init_vlc() is used with too little memory vlc->table_allocated += (1 << vlc->bits); vlc->table = av_realloc(vlc->table, sizeof(VLC_TYPE) * 2 * vlc->table_allocated); |