mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
lavf/gif: support only GIF codec.
This commit is contained in:
parent
01367b0fca
commit
9db1c6455e
@ -77,10 +77,11 @@ static int gif_write_header(AVFormatContext *s)
|
||||
int width, height;
|
||||
uint32_t palette[AVPALETTE_COUNT];
|
||||
|
||||
if (s->nb_streams != 1 || !s->streams[0]->codec ||
|
||||
s->streams[0]->codec->codec_type != AVMEDIA_TYPE_VIDEO) {
|
||||
if (s->nb_streams != 1 ||
|
||||
s->streams[0]->codec->codec_type != AVMEDIA_TYPE_VIDEO ||
|
||||
s->streams[0]->codec->codec_id != AV_CODEC_ID_GIF) {
|
||||
av_log(s, AV_LOG_ERROR,
|
||||
"GIF supports only a single video stream.\n");
|
||||
"GIF muxer supports only a single video GIF stream.\n");
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user