summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/vocenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vocenc.c b/libavformat/vocenc.c
index 27ed16f7fa..29e9363492 100644
--- a/libavformat/vocenc.c
+++ b/libavformat/vocenc.c
@@ -38,7 +38,7 @@ static int voc_write_header(AVFormatContext *s)
|| s->streams[0]->codec->codec_type != AVMEDIA_TYPE_AUDIO)
return AVERROR_PATCHWELCOME;
- if (!enc->codec_tag || enc->codec_tag > 0xffff) {
+ if (!enc->codec_tag && enc->codec_id != AV_CODEC_ID_PCM_U8) {
av_log(s, AV_LOG_ERROR, "unsupported codec\n");
return AVERROR(EINVAL);
}