mirror of https://git.ffmpeg.org/ffmpeg.git
using av_abort instead exit
Originally committed as revision 2092 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7855ef1ce4
commit
e7124ffc68
|
@ -293,7 +293,7 @@ static int build_table(VLC *vlc, int table_nb_bits,
|
|||
#endif
|
||||
if (table[j][1] /*bits*/ != 0) {
|
||||
fprintf(stderr, "incorrect codes\n");
|
||||
exit(1);
|
||||
av_abort();
|
||||
}
|
||||
table[j][1] = n; //bits
|
||||
table[j][0] = i; //code
|
||||
|
|
Loading…
Reference in New Issue