1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

using av_abort instead exit

Originally committed as revision 2092 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Alex Beregszaszi 2003-07-28 16:35:42 +00:00
parent 7855ef1ce4
commit e7124ffc68

View File

@ -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