Fix libgsm.c compilation after typo in 67b8c8.

This commit is contained in:
Carl Eugen Hoyos 2012-03-22 22:00:58 +01:00
parent 6716e6892b
commit abdcb4918c
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ static int libgsm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
gsm_signal *samples = (gsm_signal *)frame->data[0];
struct gsm_state *state = avctx->priv_data;
if ((ret = ff_alloc_packet2(avctx, vpkt, avctx->block_align))) {
if ((ret = ff_alloc_packet2(avctx, avpkt, avctx->block_align))) {
return ret;
}