From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 6035F44A60 for ; Tue, 6 Dec 2022 18:21:25 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 925D968BD6A; Tue, 6 Dec 2022 20:21:23 +0200 (EET) Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id F103268BAA0 for ; Tue, 6 Dec 2022 20:21:16 +0200 (EET) Received: (Authenticated sender: michael@niedermayer.cc) by mail.gandi.net (Postfix) with ESMTPSA id 43B52C0005 for ; Tue, 6 Dec 2022 18:21:15 +0000 (UTC) Date: Tue, 6 Dec 2022 19:21:15 +0100 From: Michael Niedermayer To: FFmpeg development discussions and patches Message-ID: <20221206182115.GB3806951@pb2> References: <20221205221641.1215-1-mindmark@gmail.com> MIME-Version: 1.0 In-Reply-To: <20221205221641.1215-1-mindmark@gmail.com> Subject: Re: [FFmpeg-devel] [PATCH v2 1/2] avutil: move bswapdsp from avcodec to avutil X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: multipart/mixed; boundary="===============2099171198258011240==" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --===============2099171198258011240== Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="/If7Wv41KAW8wPhq" Content-Disposition: inline --/If7Wv41KAW8wPhq Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Dec 05, 2022 at 02:16:40PM -0800, mindmark@gmail.com wrote: > From: Mark Reid >=20 > Also renamed bswap_buf to bswap32_buf > --- > configure | 56 ++++++++----------- > libavcodec/4xm.c | 14 ++--- > libavcodec/Makefile | 1 - > libavcodec/ac3dec.c | 4 +- > libavcodec/ac3dec.h | 4 +- > libavcodec/alsdec.c | 12 ++-- > libavcodec/apedec.c | 10 ++-- > libavcodec/asv.c | 4 +- > libavcodec/asv.h | 4 +- > libavcodec/asvdec.c | 4 +- > libavcodec/asvenc.c | 4 +- > libavcodec/cllc.c | 6 +- > libavcodec/eamad.c | 6 +- > libavcodec/eatqi.c | 10 ++-- > libavcodec/exr.c | 6 +- > libavcodec/flacenc.c | 6 +- > libavcodec/fraps.c | 10 ++-- > libavcodec/hevcdec.c | 4 +- > libavcodec/hevcdec.h | 4 +- > libavcodec/huffyuvdec.c | 14 ++--- > libavcodec/huffyuvenc.c | 8 +-- > libavcodec/imc.c | 6 +- > libavcodec/imm4.c | 12 ++-- > libavcodec/mdec.c | 6 +- > libavcodec/mimic.c | 12 ++-- > libavcodec/mobiclip.c | 6 +- > libavcodec/motionpixels.c | 10 ++-- > libavcodec/mpc.h | 4 +- > libavcodec/mpc7.c | 8 +-- > libavcodec/rawdec.c | 8 +-- > libavcodec/riscv/Makefile | 3 - > libavcodec/shorten.c | 7 ++- > libavcodec/truemotion2.c | 11 ++-- > libavcodec/truespeech.c | 8 +-- > libavcodec/utvideo.h | 4 +- > libavcodec/utvideodec.c | 16 +++--- > libavcodec/utvideoenc.c | 10 ++-- > libavcodec/x86/Makefile | 2 - > libavcodec/ylc.c | 18 +++--- > libavutil/Makefile | 2 + > {libavcodec =3D> libavutil}/bswapdsp.c | 17 +++--- > {libavcodec =3D> libavutil}/bswapdsp.h | 16 +++--- > libavutil/riscv/Makefile | 7 ++- > .../riscv/bswapdsp_init.c | 9 +-- > .../riscv/bswapdsp_rvb.S | 0 > .../riscv/bswapdsp_rvv.S | 0 > libavutil/version.h | 2 +- > libavutil/x86/Makefile | 8 ++- > {libavcodec =3D> libavutil}/x86/bswapdsp.asm | 4 +- > {libavcodec =3D> libavutil}/x86/bswapdsp_init.c | 17 +++--- > tests/checkasm/Makefile | 2 +- > tests/checkasm/bswapdsp.c | 8 +-- > tests/checkasm/checkasm.c | 4 +- > 53 files changed, 216 insertions(+), 222 deletions(-) > rename {libavcodec =3D> libavutil}/bswapdsp.c (80%) > rename {libavcodec =3D> libavutil}/bswapdsp.h (71%) > rename {libavcodec =3D> libavutil}/riscv/bswapdsp_init.c (85%) > rename {libavcodec =3D> libavutil}/riscv/bswapdsp_rvb.S (100%) > rename {libavcodec =3D> libavutil}/riscv/bswapdsp_rvv.S (100%) > rename {libavcodec =3D> libavutil}/x86/bswapdsp.asm (97%) > rename {libavcodec =3D> libavutil}/x86/bswapdsp_init.c (80%) >=20 > diff --git a/configure b/configure > index f4eedfc207..03b502ea37 100755 > --- a/configure > +++ b/configure > @@ -2421,7 +2421,6 @@ CONFIG_EXTRA=3D" > audio_frame_queue > audiodsp > blockdsp > - bswapdsp > cabac > cbs > cbs_av1 > @@ -2749,8 +2748,8 @@ aac_decoder_select=3D"adts_header mpeg4audio sinewi= n" > aac_fixed_decoder_select=3D"adts_header mpeg4audio" > aac_encoder_select=3D"audio_frame_queue iirfilter lpc sinewin" > aac_latm_decoder_select=3D"aac_decoder aac_latm_parser" > -ac3_decoder_select=3D"ac3_parser ac3dsp bswapdsp fmtconvert" > -ac3_fixed_decoder_select=3D"ac3_parser ac3dsp bswapdsp" > +ac3_decoder_select=3D"ac3_parser ac3dsp fmtconvert" > +ac3_fixed_decoder_select=3D"ac3_parser ac3dsp" > ac3_encoder_select=3D"ac3dsp audiodsp me_cmp" > ac3_fixed_encoder_select=3D"ac3dsp audiodsp me_cmp" > acelp_kelvin_decoder_select=3D"audiodsp" > @@ -2759,20 +2758,20 @@ adpcm_g722_encoder_select=3D"g722dsp" > agm_decoder_select=3D"idctdsp" > aic_decoder_select=3D"golomb idctdsp" > alac_encoder_select=3D"lpc" > -als_decoder_select=3D"bswapdsp mpeg4audio" > +als_decoder_select=3D"mpeg4audio" > amrnb_decoder_select=3D"lsp" > amrwb_decoder_select=3D"lsp" > amv_decoder_select=3D"sp5x_decoder exif" > amv_encoder_select=3D"jpegtables mpegvideoenc" > -ape_decoder_select=3D"bswapdsp llauddsp" > +ape_decoder_select=3D"llauddsp" > apng_decoder_select=3D"inflate_wrapper" > apng_encoder_select=3D"deflate_wrapper llvidencdsp" > aptx_encoder_select=3D"audio_frame_queue" > aptx_hd_encoder_select=3D"audio_frame_queue" > -asv1_decoder_select=3D"blockdsp bswapdsp idctdsp" > +asv1_decoder_select=3D"idctdsp" blockdsp is disappearing here, i dont think that should happen in this patch thx [...] --=20 Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Let us carefully observe those good qualities wherein our enemies excel us and endeavor to excel them, by avoiding what is faulty, and imitating what is excellent in them. -- Plutarch --/If7Wv41KAW8wPhq Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABEIAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCY4+IGwAKCRBhHseHBAsP q+KbAJ9y460XrHdyyc/yosy7Z8+UGqmdAgCgkvx9UEwl0E6bnEDD5KO9ZrXBfY0= =JUCK -----END PGP SIGNATURE----- --/If7Wv41KAW8wPhq-- --===============2099171198258011240== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". --===============2099171198258011240==--