Browse Source

api-example: remove an unneeded call to avcodec_get_frame_defaults().

avcodec_decode_audio4() resets the frame itself.
tags/n2.2-rc1
Anton Khirnov 12 years ago
parent
commit
48d17ee6dc
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavcodec/api-example.c

+ 1
- 2
libavcodec/api-example.c View File

@@ -272,8 +272,7 @@ static void audio_decode_example(const char *outfilename, const char *filename)
fprintf(stderr, "out of memory\n");
exit(1);
}
} else
avcodec_get_frame_defaults(decoded_frame);
}

len = avcodec_decode_audio4(c, decoded_frame, &got_frame, &avpkt);
if (len < 0) {


Loading…
Cancel
Save