summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-02 20:22:59 +0000
committerivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-02 20:22:59 +0000
commitc5a07578a9bc0cd700e9c4b98c3efe9a0ee568ef (patch)
tree83151e78d569124463b521c5a61676ab265a8179 /libvo
parente05a06cb4d87fa27462897629275ea3369d2165b (diff)
downloadmpv-c5a07578a9bc0cd700e9c4b98c3efe9a0ee568ef.tar.bz2
mpv-c5a07578a9bc0cd700e9c4b98c3efe9a0ee568ef.tar.xz
use libavutil's md5 implementation instead of local imported copy
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18887 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_md5sum.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/libvo/vo_md5sum.c b/libvo/vo_md5sum.c
index fec9209ee4..830feeb106 100644
--- a/libvo/vo_md5sum.c
+++ b/libvo/vo_md5sum.c
@@ -10,6 +10,7 @@
*
* Changelog
*
+ * 2006-07-02 Removed imported md5sum code and rely on libavutil now
* 2005-01-16 Replaced suboption parser by call to subopt-helper.
* 2004-09-16 Second draft. It now acts on VOCTRL_DRAW_IMAGE and does not
* maintain a local copy of the image if the format is YV12.
@@ -38,7 +39,7 @@
#include "video_out_internal.h"
#include "mplayer.h" /* for exit_player() */
#include "help_mp.h"
-#include "md5sum.h"
+#include "libavutil/md5.h"
/* ------------------------------------------------------------------------- */
@@ -201,22 +202,23 @@ static uint32_t draw_image(mp_image_t *mpi)
uint32_t strideU = mpi->stride[1];
uint32_t strideV = mpi->stride[2];
- auth_md5Ctx md5_context;
+ uint8_t md5_context_memory[av_md5_size];
+ struct AVMD5 *md5_context = (struct AVMD5*) md5_context_memory;
unsigned int i;
if (mpi->flags & MP_IMGFLAG_PLANAR) { /* Planar */
if (mpi->flags & MP_IMGFLAG_YUV) { /* Planar YUV */
- auth_md5InitCtx(&md5_context);
+ av_md5_init(md5_context);
for (i=0; i<h; i++) {
- auth_md5SumCtx(&md5_context, planeY + i * strideY, w);
+ av_md5_update(md5_context, planeY + i * strideY, w);
}
w = w / 2;
h = h / 2;
for (i=0; i<h; i++) {
- auth_md5SumCtx(&md5_context, planeU + i * strideU, w);
- auth_md5SumCtx(&md5_context, planeV + i * strideV, w);
+ av_md5_update(md5_context, planeU + i * strideU, w);
+ av_md5_update(md5_context, planeV + i * strideV, w);
}
- auth_md5CloseCtx(&md5_context, md5sum);
+ av_md5_final(md5_context, md5sum);
md5sum_output_sum(md5sum);
return VO_TRUE;
} else { /* Planar RGB */
@@ -227,7 +229,7 @@ static uint32_t draw_image(mp_image_t *mpi)
return VO_FALSE;
} else { /* Packed RGB */
- auth_md5Sum(md5sum, rgbimage, mpi->w * (mpi->bpp >> 3) * mpi->h);
+ av_md5_sum(md5sum, rgbimage, mpi->w * (mpi->bpp >> 3) * mpi->h);
md5sum_output_sum(md5sum);
return VO_TRUE;
}