Changeset aba6c4cd35fbe307e73312debdbff1e83b5312c8

Show
Ignore:
Timestamp:
14/02/07 15:40:29 (2 years ago)
Author:
Christophe Massiot <massiot@videolan.org>
git-committer:
Christophe Massiot <massiot@videolan.org> 1171464029 +0000
git-parent:

[eeb6783303988aea7e6a19bc21249749c6b4f8ba]

git-author:
Christophe Massiot <massiot@videolan.org> 1171464029 +0000
Message:
  • modules/mux/mpeg/ts.c: EN 300 473 says that data_alignment PES flag
    must be set to 1 for DVB subtitles.
Files:

Legend:

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

    rdb7c888 raba6c4c  
    14831483                                b_data_alignment = 1; 
    14841484                            } 
     1485                            else if( p_input->p_fmt->i_codec == 
     1486                                       VLC_FOURCC('d','v','b','s') ) 
     1487                            { 
     1488                                /* EN 300 473 */ 
     1489                                b_data_alignment = 1; 
     1490                            } 
    14851491                        } 
    14861492                        else if( p_data->i_length < 0 ||