On Tuesday, December 10, 2013, Luca Barbato wrote: > On 10/12/13 15:28, Vittorio Giovara wrote: > > From: Carl Eugen Hoyos <[email protected] <javascript:;>> > > > > --- > > Needed to decode streams like > https://docs.google.com/file/d/0B_kMum-KR5w0Nm90OGxTbl82NTA/edit > > Reported by Ismael Luceno and Hendrik Leppkes. > > Vittorio > > > > libavformat/mpegts.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c > > index a6a4a0a..3f828b4 100644 > > --- a/libavformat/mpegts.c > > +++ b/libavformat/mpegts.c > > @@ -570,6 +570,7 @@ static const StreamType REGD_types[] = { > > { MKTAG('D','T','S','1'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS }, > > { MKTAG('D','T','S','2'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS }, > > { MKTAG('D','T','S','3'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS }, > > + { MKTAG('H','E','V','C'), AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_HEVC }, > > { MKTAG('V','C','-','1'), AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_VC1 }, > > { 0 }, > > }; > > > > Vertical alignment please.
The codec ids are aligned at the }, see the whole file. I got tricked by it too when I first saw this :-) Vittorio > _______________________________________________ > libav-devel mailing list > [email protected] <javascript:;> > https://lists.libav.org/mailman/listinfo/libav-devel > _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
