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;
|
break;
|
||||||
default:
|
default:
|
||||||
abort();
|
av_assert0(0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user