mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
fftools/ffmpeg_enc: replace abort() with av_assert0(0)
This is consistent with the treatment of other unreachable paths.
This commit is contained in:
parent
fd91ac11ed
commit
5d4f467cc9
@ -306,7 +306,7 @@ int enc_open(OutputStream *ost, AVFrame *frame)
|
||||
|
||||
break;
|
||||
default:
|
||||
abort();
|
||||
av_assert0(0);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user