Changeset 517d31de214ad1a373d67fd9adc4ce9e51231ab6

Show
Ignore:
Timestamp:
10/08/06 12:40:59 (2 years ago)
Author:
Derk-Jan Hartman <hartman@videolan.org>
git-committer:
Derk-Jan Hartman <hartman@videolan.org> 1160304059 +0000
git-parent:

[e987d21394a1c2a065bb1744dc84a91b29b37e06]

git-author:
Derk-Jan Hartman <hartman@videolan.org> 1160304059 +0000
Message:

* Don't skip SPS/PPS after all. Apparently there is sometimes proper data behind such a NAL, which makes this break. Unfortunately there doesn't seem to be a way to properly skip data in the mp4 mux.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/mux/mp4.c

    re987d21 r517d31d  
    699699        /* Skip blocks with SPS/PPS */  
    700700        if( (last[4]&0x1f) == 7 || (last[4]&0x1f) == 8 ) 
    701             p_block->i_buffer = 0; 
     701            ; // FIXME Find a way to skip dat without frelling everything 
    702702 
    703703        last = dat;