# HG changeset patch # User bcoudurier # Date 1243741545 0 # Node ID 5bd0b3955904336c7dd21ac47e85674ee35a533c # Parent 4b6537814493b060f5e49e97d287c06da36f2d84 reindent diff -r 4b6537814493 -r 5bd0b3955904 mpegts.c --- 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; }