* [FFmpeg-devel] [PATCH] avcodec/cri, tdsc, tiff: Don't forward AVCodecContext.dct_algo
@ 2024-02-11 10:53 Andreas Rheinhardt
2024-02-13 12:23 ` Andreas Rheinhardt
0 siblings, 1 reply; 2+ messages in thread
From: Andreas Rheinhardt @ 2024-02-11 10:53 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Andreas Rheinhardt
It is unused for decoders.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
libavcodec/cri.c | 1 -
libavcodec/tdsc.c | 1 -
libavcodec/tiff.c | 1 -
3 files changed, 3 deletions(-)
diff --git a/libavcodec/cri.c b/libavcodec/cri.c
index 0380a0c665..c4eb468610 100644
--- a/libavcodec/cri.c
+++ b/libavcodec/cri.c
@@ -70,7 +70,6 @@ static av_cold int cri_decode_init(AVCodecContext *avctx)
return AVERROR(ENOMEM);
s->jpeg_avctx->flags = avctx->flags;
s->jpeg_avctx->flags2 = avctx->flags2;
- s->jpeg_avctx->dct_algo = avctx->dct_algo;
s->jpeg_avctx->idct_algo = avctx->idct_algo;
ret = avcodec_open2(s->jpeg_avctx, codec, NULL);
if (ret < 0)
diff --git a/libavcodec/tdsc.c b/libavcodec/tdsc.c
index 739738d9b1..624e219cb4 100644
--- a/libavcodec/tdsc.c
+++ b/libavcodec/tdsc.c
@@ -127,7 +127,6 @@ static av_cold int tdsc_init(AVCodecContext *avctx)
return AVERROR(ENOMEM);
ctx->jpeg_avctx->flags = avctx->flags;
ctx->jpeg_avctx->flags2 = avctx->flags2;
- ctx->jpeg_avctx->dct_algo = avctx->dct_algo;
ctx->jpeg_avctx->idct_algo = avctx->idct_algo;
ret = avcodec_open2(ctx->jpeg_avctx, codec, NULL);
if (ret < 0)
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c
index adb49e4525..7687dfd0d6 100644
--- a/libavcodec/tiff.c
+++ b/libavcodec/tiff.c
@@ -2416,7 +2416,6 @@ static av_cold int tiff_init(AVCodecContext *avctx)
return AVERROR(ENOMEM);
s->avctx_mjpeg->flags = avctx->flags;
s->avctx_mjpeg->flags2 = avctx->flags2;
- s->avctx_mjpeg->dct_algo = avctx->dct_algo;
s->avctx_mjpeg->idct_algo = avctx->idct_algo;
s->avctx_mjpeg->max_pixels = avctx->max_pixels;
ret = avcodec_open2(s->avctx_mjpeg, codec, NULL);
--
2.34.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".
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avcodec/cri, tdsc, tiff: Don't forward AVCodecContext.dct_algo
2024-02-11 10:53 [FFmpeg-devel] [PATCH] avcodec/cri, tdsc, tiff: Don't forward AVCodecContext.dct_algo Andreas Rheinhardt
@ 2024-02-13 12:23 ` Andreas Rheinhardt
0 siblings, 0 replies; 2+ messages in thread
From: Andreas Rheinhardt @ 2024-02-13 12:23 UTC (permalink / raw)
To: ffmpeg-devel
Andreas Rheinhardt:
> It is unused for decoders.
>
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
> libavcodec/cri.c | 1 -
> libavcodec/tdsc.c | 1 -
> libavcodec/tiff.c | 1 -
> 3 files changed, 3 deletions(-)
>
> diff --git a/libavcodec/cri.c b/libavcodec/cri.c
> index 0380a0c665..c4eb468610 100644
> --- a/libavcodec/cri.c
> +++ b/libavcodec/cri.c
> @@ -70,7 +70,6 @@ static av_cold int cri_decode_init(AVCodecContext *avctx)
> return AVERROR(ENOMEM);
> s->jpeg_avctx->flags = avctx->flags;
> s->jpeg_avctx->flags2 = avctx->flags2;
> - s->jpeg_avctx->dct_algo = avctx->dct_algo;
> s->jpeg_avctx->idct_algo = avctx->idct_algo;
> ret = avcodec_open2(s->jpeg_avctx, codec, NULL);
> if (ret < 0)
> diff --git a/libavcodec/tdsc.c b/libavcodec/tdsc.c
> index 739738d9b1..624e219cb4 100644
> --- a/libavcodec/tdsc.c
> +++ b/libavcodec/tdsc.c
> @@ -127,7 +127,6 @@ static av_cold int tdsc_init(AVCodecContext *avctx)
> return AVERROR(ENOMEM);
> ctx->jpeg_avctx->flags = avctx->flags;
> ctx->jpeg_avctx->flags2 = avctx->flags2;
> - ctx->jpeg_avctx->dct_algo = avctx->dct_algo;
> ctx->jpeg_avctx->idct_algo = avctx->idct_algo;
> ret = avcodec_open2(ctx->jpeg_avctx, codec, NULL);
> if (ret < 0)
> diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c
> index adb49e4525..7687dfd0d6 100644
> --- a/libavcodec/tiff.c
> +++ b/libavcodec/tiff.c
> @@ -2416,7 +2416,6 @@ static av_cold int tiff_init(AVCodecContext *avctx)
> return AVERROR(ENOMEM);
> s->avctx_mjpeg->flags = avctx->flags;
> s->avctx_mjpeg->flags2 = avctx->flags2;
> - s->avctx_mjpeg->dct_algo = avctx->dct_algo;
> s->avctx_mjpeg->idct_algo = avctx->idct_algo;
> s->avctx_mjpeg->max_pixels = avctx->max_pixels;
> ret = avcodec_open2(s->avctx_mjpeg, codec, NULL);
Will apply tomorrow unless there are objections.
- Andreas
_______________________________________________
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".
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-02-13 12:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-11 10:53 [FFmpeg-devel] [PATCH] avcodec/cri, tdsc, tiff: Don't forward AVCodecContext.dct_algo Andreas Rheinhardt
2024-02-13 12:23 ` Andreas Rheinhardt
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