From 163682fab3a668ae3e23cbbef1dc02f3e7c3f0f8 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 8 Dec 2011 15:38:49 +0100 Subject: [PATCH] cljr: drop unnecessary emms_c() calls without MMX code --- libavcodec/cljr.c | 4 ---- 1 file changed, 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; }