You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +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:
@@ -306,7 +306,7 @@ int enc_open(OutputStream *ost, AVFrame *frame)
|
||||
|
||||
break;
|
||||
default:
|
||||
abort();
|
||||
av_assert0(0);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user