Mercurial > libavformat.hg
changeset 4984:5bd0b3955904 libavformat
reindent
author | bcoudurier |
---|---|
date | Sun, 31 May 2009 03:45:45 +0000 |
parents | 4b6537814493 |
children | 59bf27420396 |
files | mpegts.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/mpegts.c Sun May 31 03:44:03 2009 +0000 +++ b/mpegts.c Sun May 31 03:45:45 2009 +0000 @@ -558,12 +558,12 @@ 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; }