aac_latm: remove unneeded check for zero-size packet.

This is already checked by avcodec_decode_audio3()
pull/2/head
Justin Ruggles 13 years ago
parent f1901180e0
commit 71ccfb3f14
  1. 3
      libavcodec/aacdec.c

@ -2487,9 +2487,6 @@ static int latm_decode_frame(AVCodecContext *avctx, void *out, int *out_size,
int muxlength, err; int muxlength, err;
GetBitContext gb; GetBitContext gb;
if (avpkt->size == 0)
return 0;
init_get_bits(&gb, avpkt->data, avpkt->size * 8); init_get_bits(&gb, avpkt->data, avpkt->size * 8);
// check for LOAS sync word // check for LOAS sync word

Loading…
Cancel
Save