am7xxx-play: remove some code which will never be executed
authorAntonio Ospite <ao2@ao2.it>
Wed, 28 Feb 2018 09:18:07 +0000 (10:18 +0100)
committerAntonio Ospite <ao2@ao2.it>
Thu, 1 Mar 2018 14:33:27 +0000 (15:33 +0100)
input_codec_ctx is guaranteed to be defined here, otherwise the code
would have bailed out earlier.

examples/am7xxx-play.c

index 82954fc..2d1ef48 100644 (file)
@@ -113,11 +113,6 @@ static int video_input_init(struct video_input_ctx *input_ctx,
 
        /* get a pointer to the codec context for the video stream */
        input_codec_ctx = input_format_ctx->streams[video_index]->codec;
 
        /* get a pointer to the codec context for the video stream */
        input_codec_ctx = input_format_ctx->streams[video_index]->codec;
-       if (input_codec_ctx == NULL) {
-               fprintf(stderr, "input codec context is not valid\n");
-               ret = -EINVAL;
-               goto cleanup;
-       }
 
        /* find the decoder for the video stream */
        input_codec = avcodec_find_decoder(input_codec_ctx->codec_id);
 
        /* find the decoder for the video stream */
        input_codec = avcodec_find_decoder(input_codec_ctx->codec_id);