Commit 9313c6ae authored by benoit's avatar benoit

Parse 'dats' as data.

Patch by Florian Echtler: floe butterbrot org


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13801 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6cb4899e
......@@ -415,6 +415,9 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
//FIXME
codec_type = CODEC_TYPE_DATA; //CODEC_TYPE_SUB ? FIXME
break;
case MKTAG('d', 'a', 't', 's'):
codec_type = CODEC_TYPE_DATA;
break;
default:
av_log(s, AV_LOG_ERROR, "unknown stream type %X\n", tag1);
goto fail;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment