summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-12-08 15:38:49 +0100
committerDiego Biurrun <diego@biurrun.de>2011-12-08 20:28:26 +0100
commit163682fab3a668ae3e23cbbef1dc02f3e7c3f0f8 (patch)
treef3556966e7b6639d394d88f1e2b83582c63a3674 /libavcodec
parentbbc10185eef0b5c1ad52bf19c666e42429d4b07e (diff)
cljr: drop unnecessary emms_c() calls without MMX code
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/cljr.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c
index 60718075b5..bc70d1b27f 100644
--- a/libavcodec/cljr.c
+++ b/libavcodec/cljr.c
@@ -92,8 +92,6 @@ static int decode_frame(AVCodecContext *avctx,
*picture = a->picture;
*data_size = sizeof(AVPicture);
- emms_c();
-
return buf_size;
}
@@ -153,8 +151,6 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size,
flush_put_bits(&pb);
- emms_c();
-
return put_bits_count(&pb) / 8;
}