diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-03-22 22:00:58 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-03-22 22:01:35 +0100 |
commit | abdcb4918c14611b5771e1c3c256052041442267 (patch) | |
tree | cc3a75a4063420285e7ec616fbecf1f95e0ff038 | |
parent | 6716e6892baf0036f58d02011b8aac8c766970a4 (diff) | |
download | ffmpeg-abdcb4918c14611b5771e1c3c256052041442267.tar.gz |
Fix libgsm.c compilation after typo in 67b8c8.
-rw-r--r-- | libavcodec/libgsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c index eafcbec4a8..cbb284b9b0 100644 --- a/libavcodec/libgsm.c +++ b/libavcodec/libgsm.c @@ -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; } |