diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-03-24 17:12:32 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-04-09 15:47:45 +0200 |
commit | 237f9b9682a0f18345dcf6841527a795a32b3eb5 (patch) | |
tree | 54f15bc69c865e3eb95f3744192c74356ba346d1 /fftools/ffmpeg.c | |
parent | 923c6ab170669793d3311cbfd465a967d44f1636 (diff) | |
download | ffmpeg-237f9b9682a0f18345dcf6841527a795a32b3eb5.tar.gz |
fftools/ffmpeg: stop handling AVMEDIA_TYPE_DATA in init_output_stream_encode()
We do not support data encoders, so this should never be reached.
Diffstat (limited to 'fftools/ffmpeg.c')
-rw-r--r-- | fftools/ffmpeg.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 28f7d70b31..d74145183e 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -3175,8 +3175,6 @@ static int init_output_stream_encode(OutputStream *ost, AVFrame *frame) } break; - case AVMEDIA_TYPE_DATA: - break; default: abort(); break; |