Commit e9d31204 authored by reynaldo's avatar reynaldo

COSMETICS

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16028 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent aa5ca60b
......@@ -53,7 +53,6 @@ typedef struct MTVDemuxContext {
static int mtv_probe(AVProbeData *p)
{
/* Magic is 'AMV' */
if(*(p->buf) != 'A' || *(p->buf+1) != 'M' || *(p->buf+2) != 'V')
return 0;
......@@ -67,7 +66,6 @@ static int mtv_read_header(AVFormatContext *s, AVFormatParameters *ap)
AVStream *st;
unsigned int audio_subsegments;
url_fskip(pb, 3);
mtv->file_size = get_le32(pb);
mtv->segments = get_le32(pb);
......
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