diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-06-22 15:22:38 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-07-03 20:35:32 +0200 |
commit | abc54c25befa2f2ca4ecea23d4feb12922e6c44f (patch) | |
tree | 5ee602b90a0da4b77ffed38c3df2e4ddbbb119dc /libavcodec/intelh263dec.c | |
parent | 60f51bdaac29121fca429274dfa2d8431999d571 (diff) | |
download | ffmpeg-abc54c25befa2f2ca4ecea23d4feb12922e6c44f.tar.gz |
avcodec/mpegvideo: Move loop_filter to {H263Dec,MPVEnc,VC1}Context
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/intelh263dec.c')
-rw-r--r-- | libavcodec/intelh263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/intelh263dec.c b/libavcodec/intelh263dec.c index 73d56f4195..27a3cadbad 100644 --- a/libavcodec/intelh263dec.c +++ b/libavcodec/intelh263dec.c @@ -82,7 +82,7 @@ int ff_intel_h263_decode_picture_header(H263DecContext *const h) } if (get_bits(&h->gb, 2)) av_log(h->c.avctx, AV_LOG_ERROR, "Bad value for reserved field\n"); - h->c.loop_filter = get_bits1(&h->gb) * !h->c.avctx->lowres; + h->loop_filter = get_bits1(&h->gb) * !h->c.avctx->lowres; if (get_bits1(&h->gb)) av_log(h->c.avctx, AV_LOG_ERROR, "Bad value for reserved field\n"); if (get_bits1(&h->gb)) |