cosmetics: reindent

Originally committed as revision 10753 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs 2007-10-15 22:52:22 +00:00
parent d3e412d0cc
commit 227a388d07

View File

@ -181,15 +181,15 @@ static int ea_read_header(AVFormatContext *s,
return AVERROR(EIO); return AVERROR(EIO);
if (ea->time_base.num && ea->time_base.den) { if (ea->time_base.num && ea->time_base.den) {
/* initialize the video decoder stream */ /* initialize the video decoder stream */
st = av_new_stream(s, 0); st = av_new_stream(s, 0);
if (!st) if (!st)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
ea->video_stream_index = st->index; ea->video_stream_index = st->index;
st->codec->codec_type = CODEC_TYPE_VIDEO; st->codec->codec_type = CODEC_TYPE_VIDEO;
st->codec->codec_id = CODEC_ID_VP6; st->codec->codec_id = CODEC_ID_VP6;
st->codec->codec_tag = 0; /* no fourcc */ st->codec->codec_tag = 0; /* no fourcc */
st->codec->time_base = ea->time_base; st->codec->time_base = ea->time_base;
} }
/* initialize the audio decoder stream */ /* initialize the audio decoder stream */