aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2005-06-17 15:02:53 +0000
committerDiego Biurrun <diego@biurrun.de>2005-06-17 15:02:53 +0000
commitbb628dae442f85fc8814d7c60c744a409fa001ab (patch)
treed91864ccb8c065a7fc9a95829632a911e654a7f3 /libavcodec/utils.c
parent36940eca762ea3ad77135c95230af65da74a56a6 (diff)
downloadffmpeg-bb628dae442f85fc8814d7c60c744a409fa001ab.tar.gz
spelling fixes
patch by Peter Robinson pbrobinson @ at @ gmail . dot . com and myself Originally committed as revision 4382 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index a964a6fd46..5bd0012a47 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -583,7 +583,7 @@ int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict);
avctx->frame_number++;
- emms_c(); //needed to avoid a emms_c() call before every return;
+ emms_c(); //needed to avoid an emms_c() call before every return;
return ret;
}else
@@ -621,7 +621,7 @@ int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture,
ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
buf, buf_size);
- emms_c(); //needed to avoid a emms_c() call before every return;
+ emms_c(); //needed to avoid an emms_c() call before every return;
if (*got_picture_ptr)
avctx->frame_number++;