From: "Dai, Jianhui J" <jianhui.j.dai-at-intel.com@ffmpeg.org>
To: "Dai, Jianhui J" <jianhui.j.dai@intel.com>,
"ffmpeg-devel@ffmpeg.org" <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH v3] avcodec/vp8: Export `vp8_token_update_probs` variable
Date: Mon, 13 Nov 2023 01:46:11 +0000
Message-ID: <DM6PR11MB26812BBD3EFC2FBD9DB9B3D9B1B3A@DM6PR11MB2681.namprd11.prod.outlook.com> (raw)
In-Reply-To: <DM6PR11MB2681B94AE9364D4AC96CF8F8B1B3A@DM6PR11MB2681.namprd11.prod.outlook.com>
> -----Original Message-----
> From: Dai, Jianhui J <jianhui.j.dai@intel.com>
> Sent: Monday, November 13, 2023 9:44 AM
> To: ffmpeg-devel@ffmpeg.org
> Subject: [PATCH v3] avcodec/vp8: Export `vp8_token_update_probs` variable
>
> This commit exports the `vp8_token_update_probs` variable to internal library
> scope to facilitate its reuse within the library.
>
> Signed-off-by: Jianhui Dai <jianhui.j.dai@intel.com>
> ---
> libavcodec/vp8.c | 2 +-
> libavcodec/vp8data.c | 170 ++++++++++++++++++++++++++++++++++++++++++
> libavcodec/vp8data.h | 171 +------------------------------------------
> 3 files changed, 172 insertions(+), 171 deletions(-)
>
> diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index ffc430dd32..83c60adeb0
> 100644
> --- a/libavcodec/vp8.c
> +++ b/libavcodec/vp8.c
> @@ -458,7 +458,7 @@ static void vp78_update_probability_tables(VP8Context
> *s)
> for (j = 0; j < 8; j++)
> for (k = 0; k < 3; k++)
> for (l = 0; l < NUM_DCT_TOKENS-1; l++)
> - if (vpx_rac_get_prob_branchy(c, vp8_token_update_probs[i][j][k][l]))
> {
> + if (vpx_rac_get_prob_branchy(c,
> + ff_vp8_token_update_probs[i][j][k][l])) {
> int prob = vp89_rac_get_uint(c, 8);
> for (m = 0; vp8_coeff_band_indexes[j][m] >= 0; m++)
> s->prob->token[i][vp8_coeff_band_indexes[j][m]][k][l] = prob;
> diff --git a/libavcodec/vp8data.c b/libavcodec/vp8data.c index
> 857406928a..675c2a033d 100644
> --- a/libavcodec/vp8data.c
> +++ b/libavcodec/vp8data.c
> @@ -40,3 +40,173 @@ const uint8_t *const ff_vp8_dct_cat_prob[] = {
> vp8_dct_cat6_prob,
> };
>
> +const uint8_t ff_vp8_token_update_probs[4][8][3][11] = {
> + {
> + {
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 176, 246, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 223, 241, 252, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 249, 253, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 244, 252, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 234, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 253, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 246, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 239, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 254, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 248, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 251, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 251, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 254, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 254, 253, 255, 254, 255, 255, 255, 255, 255, 255 },
> + { 250, 255, 254, 255, 254, 255, 255, 255, 255, 255, 255 },
> + { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + },
> + {
> + {
> + { 217, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 225, 252, 241, 253, 255, 255, 254, 255, 255, 255, 255 },
> + { 234, 250, 241, 250, 253, 255, 253, 254, 255, 255, 255 },
> + },
> + {
> + { 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 223, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 238, 253, 254, 254, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 248, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 249, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 253, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 247, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 252, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 253, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 254, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 250, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + },
> + {
> + {
> + { 186, 251, 250, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 234, 251, 244, 254, 255, 255, 255, 255, 255, 255, 255 },
> + { 251, 251, 243, 253, 254, 255, 254, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 236, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 251, 253, 253, 254, 254, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 254, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 254, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + },
> + {
> + {
> + { 248, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 250, 254, 252, 254, 255, 255, 255, 255, 255, 255, 255 },
> + { 248, 254, 249, 253, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 253, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 246, 253, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 252, 254, 251, 254, 254, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 254, 252, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 248, 254, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 253, 255, 254, 254, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 251, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 245, 251, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 253, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 251, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 252, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 252, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 249, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 255, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 250, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + {
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> + },
> + },
> +};
> diff --git a/libavcodec/vp8data.h b/libavcodec/vp8data.h index
> 8b8f1ed111..c8e79fdbeb 100644
> --- a/libavcodec/vp8data.h
> +++ b/libavcodec/vp8data.h
> @@ -513,176 +513,7 @@ static const uint8_t
> vp8_token_default_probs[4][8][3][NUM_DCT_TOKENS - 1] = {
> },
> };
>
> -static const uint8_t vp8_token_update_probs[4][8][3][NUM_DCT_TOKENS - 1] =
> {
> - {
> - {
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 176, 246, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 223, 241, 252, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 249, 253, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 244, 252, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 234, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 253, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 246, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 239, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 254, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 248, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 251, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 251, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 254, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 254, 253, 255, 254, 255, 255, 255, 255, 255, 255 },
> - { 250, 255, 254, 255, 254, 255, 255, 255, 255, 255, 255 },
> - { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - },
> - {
> - {
> - { 217, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 225, 252, 241, 253, 255, 255, 254, 255, 255, 255, 255 },
> - { 234, 250, 241, 250, 253, 255, 253, 254, 255, 255, 255 },
> - },
> - {
> - { 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 223, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 238, 253, 254, 254, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 248, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 249, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 253, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 247, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 252, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 253, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 254, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 250, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - },
> - {
> - {
> - { 186, 251, 250, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 234, 251, 244, 254, 255, 255, 255, 255, 255, 255, 255 },
> - { 251, 251, 243, 253, 254, 255, 254, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 236, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 251, 253, 253, 254, 254, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 254, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 254, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - },
> - {
> - {
> - { 248, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 250, 254, 252, 254, 255, 255, 255, 255, 255, 255, 255 },
> - { 248, 254, 249, 253, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 253, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 246, 253, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 252, 254, 251, 254, 254, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 254, 252, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 248, 254, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 253, 255, 254, 254, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 251, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 245, 251, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 253, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 251, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 252, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 252, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 249, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 255, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 250, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - {
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
> - },
> - },
> -};
> +extern const uint8_t ff_vp8_token_update_probs[4][8][3][11];
>
> static const uint8_t vp8_dc_qlookup[VP8_MAX_QUANT + 1] = {
> 4, 5, 6, 7, 8, 9, 10, 10, 11, 12, 13, 14, 15, 16, 17, 17,
> --
Fixed the mistake in v2.
`vp8_token_update_probs` should be exported instead of ` vp8_token_default _probs`.
> 2.25.1
_______________________________________________
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".
next prev parent reply other threads:[~2023-11-13 1:46 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-13 1:44 Dai, Jianhui J
2023-11-13 1:46 ` Dai, Jianhui J [this message]
2023-11-13 6:53 ` Leo Izen
2023-11-13 7:54 ` Dai, Jianhui J
2023-11-13 13:43 ` Ronald S. Bultje
2023-11-15 15:29 ` Ronald S. Bultje
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DM6PR11MB26812BBD3EFC2FBD9DB9B3D9B1B3A@DM6PR11MB2681.namprd11.prod.outlook.com \
--to=jianhui.j.dai-at-intel.com@ffmpeg.org \
--cc=ffmpeg-devel@ffmpeg.org \
--cc=jianhui.j.dai@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git