Opened 6 years ago

Closed 6 years ago

Last modified 6 years ago

#7175 closed defect (invalid)

static AVMutex without initialization (pthread_mutex_init)

Reported by: Antr Owned by:
Priority: normal Component: undetermined
Version: unspecified Keywords:
Cc: Blocked By:
Blocking: Reproduced by developer: no
Analyzed by developer: no

Description

ffmpeg version 4.0 built on Windows 10

{ libavformat/allformats.c }
static AVMutex avpriv_register_devices_mutex

{ libavutil/log.c}
static AVMutex mutex

{ libavcodec/utils.c }
static AVMutex codec_mutex

{ libavformat/utils.c}
static AVMutex avformat_mutex

Change History (2)

comment:1 by Hendrik, 6 years ago

Resolution: invalid
Status: newclosed

All these AVMutex are initialized statically, ie.

static AVMutex mutex = AV_MUTEX_INITIALIZER;

comment:2 by Carl Eugen Hoyos, 6 years ago

Component: ffmpegundetermined
Note: See TracTickets for help on using tickets.