Changeset 7fcfedbc4fd304c5b383bcb598efa1312d9480af

Show
Ignore:
Timestamp:
03/13/08 15:55:09 (6 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1205420109 +0100
git-parent:

[0633bc89ea492e9ac81f6dde2f8c2831990981fb]

git-author:
Rafaël Carré <funman@videolan.org> 1205420109 +0100
Message:

m4a packetizer: remove (comment) unused parameter

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/packetizer/mpeg4audio.c

    r17bba6b r7fcfedb  
    332332                         unsigned int * pi_header_size ) 
    333333{ 
    334     int i_id, i_profile, i_sample_rate_idx, i_frame_size; 
     334    int i_profile, i_sample_rate_idx, i_frame_size; 
    335335    vlc_bool_t b_crc; 
    336336 
    337337    /* Fixed header between frames */ 
    338     i_id = ( (p_buf[1] >> 3) & 0x01) ? 2 : 4; /* MPEG-2 or 4 */ 
     338    //int i_id = ( (p_buf[1] >> 3) & 0x01) ? 2 : 4; /* MPEG-2 or 4 */ 
    339339    b_crc = !(p_buf[1] & 0x01); 
    340340    i_profile = p_buf[2] >> 6;