Commit f43d76ee authored by al3x's avatar al3x

using av_abort instead exit


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2092 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8852d502
...@@ -293,7 +293,7 @@ static int build_table(VLC *vlc, int table_nb_bits, ...@@ -293,7 +293,7 @@ static int build_table(VLC *vlc, int table_nb_bits,
#endif #endif
if (table[j][1] /*bits*/ != 0) { if (table[j][1] /*bits*/ != 0) {
fprintf(stderr, "incorrect codes\n"); fprintf(stderr, "incorrect codes\n");
exit(1); av_abort();
} }
table[j][1] = n; //bits table[j][1] = n; //bits
table[j][0] = i; //code table[j][0] = i; //code
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment