[SCM] libav/experimental: detect MPEG PES streams as MPEG PS; the PS demuxer will cope

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:48:22 UTC 2013


The following commit has been merged in the experimental branch:
commit 19e0e403f329baa8f1b31f47b089dba932ea31fe
Author: Måns Rullgård <mans at mansr.com>
Date:   Wed Jun 28 21:40:08 2006 +0000

    detect MPEG PES streams as MPEG PS; the PS demuxer will cope
    
    Originally committed as revision 5540 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c
index bf36222..8c8a242 100644
--- a/libavformat/mpeg.c
+++ b/libavformat/mpeg.c
@@ -1263,7 +1263,7 @@ static int mpeg_mux_end(AVFormatContext *ctx)
 static int mpegps_probe(AVProbeData *p)
 {
     uint32_t code= -1;
-    int sys=0, pspack=0, priv1=0, vid=0;
+    int sys=0, pspack=0, priv1=0, vid=0, audio=0;
     int i;
 
     for(i=0; i<p->buf_size; i++){
@@ -1274,6 +1274,7 @@ static int mpegps_probe(AVProbeData *p)
             case         PRIVATE_STREAM_1:  priv1++; break;
             case          PACK_START_CODE: pspack++; break;
             case       (VIDEO_ID + 0x100):    vid++; break;
+            case       (AUDIO_ID + 0x100):  audio++; break;
             }
         }
     }
@@ -1281,6 +1282,8 @@ static int mpegps_probe(AVProbeData *p)
         return AVPROBE_SCORE_MAX/2+2; // +1 for .mpg
     if((priv1 || vid) && (priv1+vid)*9 <= pspack*10)
         return AVPROBE_SCORE_MAX/2+2; // +1 for .mpg
+    if((!!vid ^ !!audio) && !sys && !pspack) /* PES stream */
+        return AVPROBE_SCORE_MAX/2;
     return 0;
 }
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list