diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-31 03:45:45 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-31 03:45:45 +0000 |
commit | f2c357d95d6dbc7db2eb37d0da2dd65ac2e24fee (patch) | |
tree | baa1319f83ec083c57eabe6fd9d9dab7a8f9e6d9 /libavformat/mpegts.c | |
parent | ed68efad8b198cf36e1293424cdc57fc9602ee86 (diff) | |
download | ffmpeg-f2c357d95d6dbc7db2eb37d0da2dd65ac2e24fee.tar.gz |
reindent
Originally committed as revision 19009 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r-- | libavformat/mpegts.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 34983d945b..0285fa0231 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -558,12 +558,12 @@ static AVStream *new_pes_av_stream(PESContext *pes, uint32_t prog_reg_desc) dprintf(pes->stream, "stream_type=%x pid=%x prog_reg_desc=%.4s\n", pes->stream_type, pes->pid, (char*)&prog_reg_desc); - mpegts_find_stream_type(st, pes->stream_type, ISO_types); - if (prog_reg_desc == AV_RL32("HDMV") && - st->codec->codec_id == CODEC_ID_PROBE) - mpegts_find_stream_type(st, pes->stream_type, HDMV_types); - if (st->codec->codec_id == CODEC_ID_PROBE) - mpegts_find_stream_type(st, pes->stream_type, MISC_types); + mpegts_find_stream_type(st, pes->stream_type, ISO_types); + if (prog_reg_desc == AV_RL32("HDMV") && + st->codec->codec_id == CODEC_ID_PROBE) + mpegts_find_stream_type(st, pes->stream_type, HDMV_types); + if (st->codec->codec_id == CODEC_ID_PROBE) + mpegts_find_stream_type(st, pes->stream_type, MISC_types); return st; } |