diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-10-01 12:31:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-10-01 12:31:11 +0000 |
commit | 9fe5a7b83107051812a00eaebb01db11d7378980 (patch) | |
tree | 17d978555c5402fdffa3d31a9c1e4fd144bd01bc /libavcodec/common.c | |
parent | cacf7199a179eb360514bebcd068bed467c22e83 (diff) | |
download | ffmpeg-9fe5a7b83107051812a00eaebb01db11d7378980.tar.gz |
do not call (av_)abort()
Originally committed as revision 3543 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/common.c')
-rw-r--r-- | libavcodec/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/common.c b/libavcodec/common.c index 72172fa4f7..0aa97d85a3 100644 --- a/libavcodec/common.c +++ b/libavcodec/common.c @@ -190,7 +190,7 @@ static int build_table(VLC *vlc, int table_nb_bits, #endif if (table[j][1] /*bits*/ != 0) { av_log(NULL, AV_LOG_ERROR, "incorrect codes\n"); - av_abort(); + return -1; } table[j][1] = n; //bits table[j][0] = i; //code |