mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
lavc/ac3enc: rename variable to avoid shadowing
Harmless, but confusing.
This commit is contained in:
parent
c7c7aa85b7
commit
1c36e7c1a5
@ -2536,8 +2536,8 @@ av_cold int ff_ac3_encode_init(AVCodecContext *avctx)
|
||||
}
|
||||
|
||||
if (CONFIG_EAC3_ENCODER && s->eac3) {
|
||||
static AVOnce init_static_once = AV_ONCE_INIT;
|
||||
ff_thread_once(&init_static_once, ff_eac3_exponent_init);
|
||||
static AVOnce init_static_once_eac3 = AV_ONCE_INIT;
|
||||
ff_thread_once(&init_static_once_eac3, ff_eac3_exponent_init);
|
||||
s->output_frame_header = ff_eac3_output_frame_header;
|
||||
} else
|
||||
s->output_frame_header = ac3_output_frame_header;
|
||||
|
Loading…
Reference in New Issue
Block a user