* [FFmpeg-devel] [PATCH v2] avcodec/aacdec_lpd: remove unused local variables
@ 2024-06-21 21:20 Leo Izen
2024-06-27 17:19 ` Leo Izen
2024-06-27 17:27 ` Lynne via ffmpeg-devel
0 siblings, 2 replies; 4+ messages in thread
From: Leo Izen @ 2024-06-21 21:20 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Leo Izen
int idx, and int first_tcx_flag are set but not used, so this commit
removes their declarations and assignments.
---
libavcodec/aac/aacdec_lpd.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/libavcodec/aac/aacdec_lpd.c b/libavcodec/aac/aacdec_lpd.c
index 796edd2ab5..91a3268889 100644
--- a/libavcodec/aac/aacdec_lpd.c
+++ b/libavcodec/aac/aacdec_lpd.c
@@ -99,7 +99,7 @@ static void parse_qn(GetBitContext *gb, int *qn, int nk_mode, int no_qn)
static int parse_codebook_idx(GetBitContext *gb, uint32_t *kv,
int nk_mode, int no_qn)
{
- int idx, n, nk;
+ int n, nk;
int qn[2];
parse_qn(gb, qn, nk_mode, no_qn);
@@ -114,7 +114,7 @@ static int parse_codebook_idx(GetBitContext *gb, uint32_t *kv,
}
}
- idx = get_bits(gb, 4*n);
+ skip_bits(gb, 4*n);
if (nk > 0)
for (int i = 0; i < 8; i++)
@@ -145,7 +145,6 @@ int ff_aac_ldp_parse_channel_stream(AACDecContext *ac, AACUSACConfig *usac,
int k;
const uint8_t *mod;
int first_ldp_flag;
- int first_tcx_flag;
ce->ldp.acelp_core_mode = get_bits(gb, 3);
ce->ldp.lpd_mode = get_bits(gb, 5);
@@ -157,7 +156,6 @@ int ff_aac_ldp_parse_channel_stream(AACDecContext *ac, AACUSACConfig *usac,
mod = ff_aac_lpd_mode_tab[ce->ldp.lpd_mode];
first_ldp_flag = !ce->ldp.core_mode_last;
- first_tcx_flag = 1;
if (first_ldp_flag)
ce->ldp.last_lpd_mode = -1; /* last_ldp_mode is a **STATEFUL** value */
@@ -179,7 +177,6 @@ int ff_aac_ldp_parse_channel_stream(AACDecContext *ac, AACUSACConfig *usac,
// parse_tcx_coding();
ce->ldp.last_lpd_mode = mod[k];
k += (1 << (mod[k] - 1));
- first_tcx_flag = 0;
}
}
--
2.45.2
_______________________________________________
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH v2] avcodec/aacdec_lpd: remove unused local variables
2024-06-21 21:20 [FFmpeg-devel] [PATCH v2] avcodec/aacdec_lpd: remove unused local variables Leo Izen
@ 2024-06-27 17:19 ` Leo Izen
2024-06-27 17:27 ` Lynne via ffmpeg-devel
1 sibling, 0 replies; 4+ messages in thread
From: Leo Izen @ 2024-06-27 17:19 UTC (permalink / raw)
To: FFmpeg Development
On 6/21/24 5:20 PM, Leo Izen wrote:
> int idx, and int first_tcx_flag are set but not used, so this commit
> removes their declarations and assignments.
> ---
> libavcodec/aac/aacdec_lpd.c | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/libavcodec/aac/aacdec_lpd.c b/libavcodec/aac/aacdec_lpd.c
> index 796edd2ab5..91a3268889 100644
> --- a/libavcodec/aac/aacdec_lpd.c
> +++ b/libavcodec/aac/aacdec_lpd.c
> @@ -99,7 +99,7 @@ static void parse_qn(GetBitContext *gb, int *qn, int nk_mode, int no_qn)
> static int parse_codebook_idx(GetBitContext *gb, uint32_t *kv,
> int nk_mode, int no_qn)
> {
> - int idx, n, nk;
> + int n, nk;
>
> int qn[2];
> parse_qn(gb, qn, nk_mode, no_qn);
> @@ -114,7 +114,7 @@ static int parse_codebook_idx(GetBitContext *gb, uint32_t *kv,
> }
> }
>
> - idx = get_bits(gb, 4*n);
> + skip_bits(gb, 4*n);
>
> if (nk > 0)
> for (int i = 0; i < 8; i++)
> @@ -145,7 +145,6 @@ int ff_aac_ldp_parse_channel_stream(AACDecContext *ac, AACUSACConfig *usac,
> int k;
> const uint8_t *mod;
> int first_ldp_flag;
> - int first_tcx_flag;
>
> ce->ldp.acelp_core_mode = get_bits(gb, 3);
> ce->ldp.lpd_mode = get_bits(gb, 5);
> @@ -157,7 +156,6 @@ int ff_aac_ldp_parse_channel_stream(AACDecContext *ac, AACUSACConfig *usac,
> mod = ff_aac_lpd_mode_tab[ce->ldp.lpd_mode];
>
> first_ldp_flag = !ce->ldp.core_mode_last;
> - first_tcx_flag = 1;
> if (first_ldp_flag)
> ce->ldp.last_lpd_mode = -1; /* last_ldp_mode is a **STATEFUL** value */
>
> @@ -179,7 +177,6 @@ int ff_aac_ldp_parse_channel_stream(AACDecContext *ac, AACUSACConfig *usac,
> // parse_tcx_coding();
> ce->ldp.last_lpd_mode = mod[k];
> k += (1 << (mod[k] - 1));
> - first_tcx_flag = 0;
> }
> }
>
Bumping for review.
- Leo Izen (Traneptora)
_______________________________________________
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH v2] avcodec/aacdec_lpd: remove unused local variables
2024-06-21 21:20 [FFmpeg-devel] [PATCH v2] avcodec/aacdec_lpd: remove unused local variables Leo Izen
2024-06-27 17:19 ` Leo Izen
@ 2024-06-27 17:27 ` Lynne via ffmpeg-devel
2024-06-28 5:46 ` Leo Izen
1 sibling, 1 reply; 4+ messages in thread
From: Lynne via ffmpeg-devel @ 2024-06-27 17:27 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Lynne
[-- Attachment #1.1.1.1: Type: text/plain, Size: 2035 bytes --]
On 21/06/2024 23:20, Leo Izen wrote:
> int idx, and int first_tcx_flag are set but not used, so this commit
> removes their declarations and assignments.
> ---
> libavcodec/aac/aacdec_lpd.c | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/libavcodec/aac/aacdec_lpd.c b/libavcodec/aac/aacdec_lpd.c
> index 796edd2ab5..91a3268889 100644
> --- a/libavcodec/aac/aacdec_lpd.c
> +++ b/libavcodec/aac/aacdec_lpd.c
> @@ -99,7 +99,7 @@ static void parse_qn(GetBitContext *gb, int *qn, int nk_mode, int no_qn)
> static int parse_codebook_idx(GetBitContext *gb, uint32_t *kv,
> int nk_mode, int no_qn)
> {
> - int idx, n, nk;
> + int n, nk;
>
> int qn[2];
> parse_qn(gb, qn, nk_mode, no_qn);
> @@ -114,7 +114,7 @@ static int parse_codebook_idx(GetBitContext *gb, uint32_t *kv,
> }
> }
>
> - idx = get_bits(gb, 4*n);
> + skip_bits(gb, 4*n);
>
> if (nk > 0)
> for (int i = 0; i < 8; i++)
> @@ -145,7 +145,6 @@ int ff_aac_ldp_parse_channel_stream(AACDecContext *ac, AACUSACConfig *usac,
> int k;
> const uint8_t *mod;
> int first_ldp_flag;
> - int first_tcx_flag;
>
> ce->ldp.acelp_core_mode = get_bits(gb, 3);
> ce->ldp.lpd_mode = get_bits(gb, 5);
> @@ -157,7 +156,6 @@ int ff_aac_ldp_parse_channel_stream(AACDecContext *ac, AACUSACConfig *usac,
> mod = ff_aac_lpd_mode_tab[ce->ldp.lpd_mode];
>
> first_ldp_flag = !ce->ldp.core_mode_last;
> - first_tcx_flag = 1;
> if (first_ldp_flag)
> ce->ldp.last_lpd_mode = -1; /* last_ldp_mode is a **STATEFUL** value */
>
> @@ -179,7 +177,6 @@ int ff_aac_ldp_parse_channel_stream(AACDecContext *ac, AACUSACConfig *usac,
> // parse_tcx_coding();
> ce->ldp.last_lpd_mode = mod[k];
> k += (1 << (mod[k] - 1));
> - first_tcx_flag = 0;
> }
> }
>
Sorry, missed this patch, LGTM.
[-- Attachment #1.1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 637 bytes --]
[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]
[-- Attachment #2: Type: text/plain, Size: 251 bytes --]
_______________________________________________
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH v2] avcodec/aacdec_lpd: remove unused local variables
2024-06-27 17:27 ` Lynne via ffmpeg-devel
@ 2024-06-28 5:46 ` Leo Izen
0 siblings, 0 replies; 4+ messages in thread
From: Leo Izen @ 2024-06-28 5:46 UTC (permalink / raw)
To: ffmpeg-devel
On 6/27/24 1:27 PM, Lynne via ffmpeg-devel wrote:
> On 21/06/2024 23:20, Leo Izen wrote:
>> int idx, and int first_tcx_flag are set but not used, so this commit
>> removes their declarations and assignments.
>
> Sorry, missed this patch, LGTM.
>
Applied as 539d2e989d7ce3556a549d59ee9c5125ae7d7b6b
- Leo Izen (Traneptora)
_______________________________________________
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] 4+ messages in thread
end of thread, other threads:[~2024-06-28 5:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-21 21:20 [FFmpeg-devel] [PATCH v2] avcodec/aacdec_lpd: remove unused local variables Leo Izen
2024-06-27 17:19 ` Leo Izen
2024-06-27 17:27 ` Lynne via ffmpeg-devel
2024-06-28 5:46 ` Leo Izen
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