Commit 60f5c96e authored by Baptiste Coudurier's avatar Baptiste Coudurier

remove useless braces

Originally committed as revision 12232 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 18978a49
......@@ -799,9 +799,8 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
url_fskip(pb, a.size);
}
if(st->codec->codec_type==CODEC_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1) {
if(st->codec->codec_type==CODEC_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1)
st->codec->sample_rate= sc->time_scale;
}
/* special codec parameters handling */
switch (st->codec->codec_id) {
......
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