Commit e7124ffc authored by Alex Beregszaszi's avatar Alex Beregszaszi

using av_abort instead exit

Originally committed as revision 2092 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7855ef1c
...@@ -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