1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

fftools/ffmpeg: stop handling AVMEDIA_TYPE_DATA in init_output_stream_encode()

We do not support data encoders, so this should never be reached.
This commit is contained in:
Anton Khirnov
2023-03-24 17:12:32 +01:00
parent 923c6ab170
commit 237f9b9682

View File

@@ -3174,8 +3174,6 @@ static int init_output_stream_encode(OutputStream *ost, AVFrame *frame)
} }
} }
break;
case AVMEDIA_TYPE_DATA:
break; break;
default: default:
abort(); abort();