Skip to content
Snippets Groups Projects
Commit 60f5c96e authored by Baptiste Coudurier's avatar Baptiste Coudurier
Browse files

remove useless braces

Originally committed as revision 12232 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 18978a49
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment