[FFmpeg-devel] [PATCH] Revert
Michael Niedermayer
michaelni at gmx.at
Thu Nov 1 02:08:58 CET 2012
On Thu, Nov 01, 2012 at 01:55:31AM +0100, Carl Eugen Hoyos wrote:
> On Thursday 01 November 2012 01:45:28 am Michael Niedermayer wrote:
>
> > > The problem is the MMX version of AV_COPY64()
> >
> > try adding a emms_c() somewhere, maybe after parse_bintree()
>
> Attached patch fixes direct rendering in MPlayer here when I revert my removal
> of CODEC_CAP_DR1.
>
> Thank you, Carl Eugen
> indeo3.c | 1 +
> 1 file changed, 1 insertion(+)
> f958fd52d2eebcf9a0da9411a08cb8b5a3cf4c07 patchiv32dr.patch
> diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c
> index 126bd2b..9501763 100644
> --- a/libavcodec/indeo3.c
> +++ b/libavcodec/indeo3.c
> @@ -1094,6 +1094,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
>
> if ((res = decode_plane(ctx, avctx, &ctx->planes[2], ctx->v_data_ptr, ctx->v_data_size, 10)))
> return res;
> + emms_c();
>
> if (ctx->frame.data[0])
> avctx->release_buffer(avctx, &ctx->frame);
patch ok, a emms is needed before calling outside code like
release_buffer, though i see no float/double in mplayers
release_buffer and the avcodec_decode_video stuff is protected by a
emms, so it might make sense to double check by moving this around
where the problem is comming from exactly
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Asymptotically faster algorithms should always be preferred if you have
asymptotical amounts of data
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: Digital signature
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20121101/711c9300/attachment.asc>
More information about the ffmpeg-devel
mailing list