fftools/ffmpeg_enc: replace abort() with av_assert0(0)

This is consistent with the treatment of other unreachable paths.
This commit is contained in:
Anton Khirnov 2023-03-31 12:55:53 +02:00
parent fd91ac11ed
commit 5d4f467cc9

View File

@ -306,7 +306,7 @@ int enc_open(OutputStream *ost, AVFrame *frame)
break;
default:
abort();
av_assert0(0);
break;
}