Changeset f991c0201362390627c4a9c9e1111f83d8bb9244

Show
Ignore:
Timestamp:
06/22/08 18:33:58 (2 months ago)
Author:
Antoine Cellerier <dionoea@videolan.org>
git-committer:
Antoine Cellerier <dionoea@videolan.org> 1214152438 +0200
git-parent:

[d4c651d58b69aebb1c35c25d3603124ece6e1c65]

git-author:
Antoine Cellerier <dionoea@videolan.org> 1214152438 +0200
Message:

Remove dead code.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/stream_out/transcode.c

    rac58629 rf991c02  
    11131113    sout_stream_sys_t *p_sys = p_stream->p_sys; 
    11141114    es_format_t fmt_last; 
     1115    int i; 
    11151116 
    11161117    /* 
     
    11981199    } 
    11991200 
    1200     /* FIXME: same comment as in "#if 0"ed code */ 
    1201     int i; 
    12021201    for( i = 0; i < 4; i++ ) 
    12031202    { 
     
    12111210        } 
    12121211    } 
    1213  
    1214 #if 0 
    1215 /* FIXME FIXME FIXME WHAT DOES THIS CODE DO? LOOKS LIKE IT'S RANDOMLY TRYING 
    1216 TO CHAIN A BUNCH OF AUDIO FILTERS */ 
    1217     for( i = 0; i < TRANSCODE_FILTERS; i++ ) 
    1218     { 
    1219         if( (fmt_last.audio.i_channels != 
    1220             id->p_encoder->fmt_in.audio.i_channels) || 
    1221             (fmt_last.audio.i_rate != id->p_encoder->fmt_in.audio.i_rate) || 
    1222             (fmt_last.i_codec != id->p_encoder->fmt_in.i_codec) ) 
    1223         { 
    1224             id->pp_filter[id->i_filter] = 
    1225                 transcode_audio_filter_new( p_stream, id, &fmt_last, 
    1226                                             &id->p_encoder->fmt_in, NULL ); 
    1227  
    1228             if( id->pp_filter[id->i_filter] ) 
    1229                 id->i_filter++; 
    1230             else 
    1231                 break; 
    1232         } 
    1233     } 
    1234 #endif 
    12351212 
    12361213    /* Final checks to see if conversions were successful */