[FFmpeg-cvslog] r14445 - trunk/libavformat/mpegts.c
michael
subversion
Mon Jul 28 01:06:22 CEST 2008
Author: michael
Date: Mon Jul 28 01:06:22 2008
New Revision: 14445
Log:
Fix misdetection of H.264 in mpegts as mpeg1video in mpegts.
Fixes maybeH264_dumpstream
Modified:
trunk/libavformat/mpegts.c
Modified: trunk/libavformat/mpegts.c
==============================================================================
--- trunk/libavformat/mpegts.c (original)
+++ trunk/libavformat/mpegts.c Mon Jul 28 01:06:22 2008
@@ -970,7 +970,7 @@ static AVStream* new_pes_av_stream(PESCo
codec_id = CODEC_ID_AC3;
} else {
codec_type = CODEC_TYPE_VIDEO;
- codec_id = CODEC_ID_MPEG1VIDEO;
+ codec_id = CODEC_ID_PROBE;
}
break;
}
More information about the ffmpeg-cvslog
mailing list