mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
COSMETICS
Originally committed as revision 16028 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c687643c68
commit
7100376f75
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user