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

reindent

Originally committed as revision 19009 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ed68efad
No related branches found
No related tags found
No related merge requests found
...@@ -558,12 +558,12 @@ static AVStream *new_pes_av_stream(PESContext *pes, uint32_t prog_reg_desc) ...@@ -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", dprintf(pes->stream, "stream_type=%x pid=%x prog_reg_desc=%.4s\n",
pes->stream_type, pes->pid, (char*)&prog_reg_desc); pes->stream_type, pes->pid, (char*)&prog_reg_desc);
mpegts_find_stream_type(st, pes->stream_type, ISO_types); mpegts_find_stream_type(st, pes->stream_type, ISO_types);
if (prog_reg_desc == AV_RL32("HDMV") && if (prog_reg_desc == AV_RL32("HDMV") &&
st->codec->codec_id == CODEC_ID_PROBE) st->codec->codec_id == CODEC_ID_PROBE)
mpegts_find_stream_type(st, pes->stream_type, HDMV_types); mpegts_find_stream_type(st, pes->stream_type, HDMV_types);
if (st->codec->codec_id == CODEC_ID_PROBE) 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, MISC_types);
return st; return st;
} }
......
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