mirror of https://git.ffmpeg.org/ffmpeg.git
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