OSDN Git Service

doc/examples/transcode_aac: remove non converted codepath
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 27 Nov 2013 10:22:19 +0000 (11:22 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 27 Nov 2013 10:22:19 +0000 (11:22 +0100)
This codepath is not implemented and just crashes, also its simpler
without special cases, which makes sense for an example

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
doc/examples/transcode_aac.c

index cfed0e1..35deb4c 100644 (file)
@@ -230,12 +230,6 @@ static int init_resampler(AVCodecContext *input_codec_context,
                           AVCodecContext *output_codec_context,
                           SwrContext **resample_context)
 {
-    /**
-     * Only initialize the resampler if it is necessary, i.e.,
-     * if and only if the sample formats differ.
-     */
-    if (input_codec_context->sample_fmt != output_codec_context->sample_fmt ||
-        input_codec_context->channels != output_codec_context->channels) {
         int error;
 
         /**
@@ -270,7 +264,6 @@ static int init_resampler(AVCodecContext *input_codec_context,
             swr_free(resample_context);
             return error;
         }
-    }
     return 0;
 }