[FFmpeg-devel] [PATCH]Support NXCAM NX70E files

Carl Eugen Hoyos cehoyos at ag.or.at
Mon Nov 7 13:17:04 CET 2011


Hi!

Attached patch fixes ticket #617.

Please comment, Carl Eugen
-------------- next part --------------
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index e4daa7c..29a0f61 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -617,7 +617,8 @@ static int mpegts_set_stream_info(AVStream *st, PESContext *pes,
     st->codec->codec_tag = pes->stream_type;
 
     mpegts_find_stream_type(st, pes->stream_type, ISO_types);
-    if (prog_reg_desc == AV_RL32("HDMV") &&
+    if ((prog_reg_desc == AV_RL32("HDMV") ||
+         prog_reg_desc == AV_RL32("HDPR")) &&
         st->codec->codec_id == CODEC_ID_NONE) {
         mpegts_find_stream_type(st, pes->stream_type, HDMV_types);
         if (pes->stream_type == 0x83) {


More information about the ffmpeg-devel mailing list