Changeset 77a6ebf862b2eb1da948a9e206dbe498622e1334

Show
Ignore:
Timestamp:
07/16/02 23:25:43 (6 years ago)
Author:
Sam Hocevar <sam@videolan.org>
git-committer:
Sam Hocevar <sam@videolan.org> 1026854743 +0000
git-parent:

[ba45505c117110c367d6dc034653c6a9c0a6bcc4]

git-author:
Sam Hocevar <sam@videolan.org> 1026854743 +0000
Message:
  • ./plugins/mpeg_vdec/video_parser.c, ./src/input/input_programs.c: fixed
    a few uninitialized variables.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/mpeg_vdec/video_parser.c

    r1aa0aa3 r77a6ebf  
    33 ***************************************************************************** 
    44 * Copyright (C) 1999-2001 VideoLAN 
    5  * $Id: video_parser.c,v 1.24 2002/06/05 18:01:31 stef Exp $ 
     5 * $Id: video_parser.c,v 1.25 2002/07/16 21:25:43 sam Exp $ 
    66 * 
    77 * Authors: Christophe Massiot <massiot@via.ecp.fr> 
     
    267267    p_vpar->sequence.next_pts = p_vpar->sequence.next_dts = 0; 
    268268    p_vpar->sequence.b_expect_discontinuity = 0; 
     269 
     270    p_vpar->sequence.i_width = 0; 
     271    p_vpar->sequence.i_height = 0; 
     272    p_vpar->sequence.i_frame_rate = 0; 
     273    p_vpar->sequence.i_scalable_mode = 0; 
     274    p_vpar->sequence.i_matrix_coefficients = 0; 
     275    p_vpar->sequence.b_mpeg2 = 0; 
     276    p_vpar->sequence.b_progressive = 0; 
    269277 
    270278    /* Initialize copyright information */ 
  • src/input/input_programs.c

    r1943b8d r77a6ebf  
    33 ***************************************************************************** 
    44 * Copyright (C) 1999-2002 VideoLAN 
    5  * $Id: input_programs.c,v 1.90 2002/07/15 19:33:02 fenrir Exp $ 
     5 * $Id: input_programs.c,v 1.91 2002/07/16 21:25:43 sam Exp $ 
    66 * 
    77 * Authors: Christophe Massiot <massiot@via.ecp.fr> 
     
    504504    p_es->i_cat = UNKNOWN_ES; 
    505505    p_es->i_demux_fd = 0; 
     506    p_es->c_packets = 0; 
     507    p_es->c_invalid_packets = 0; 
    506508 
    507509    if( i_data_len )