[FFmpeg-cvslog] Fix libgsm.c compilation after typo in 67b8c8.
Carl Eugen Hoyos
git at videolan.org
Thu Mar 22 22:01:50 CET 2012
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Thu Mar 22 22:00:58 2012 +0100| [abdcb4918c14611b5771e1c3c256052041442267] | committer: Carl Eugen Hoyos
Fix libgsm.c compilation after typo in 67b8c8.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=abdcb4918c14611b5771e1c3c256052041442267
---
libavcodec/libgsm.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c
index eafcbec..cbb284b 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;
}
More information about the ffmpeg-cvslog
mailing list