From 99fad892f0bcc65dfae7ca9856373a9365cf959e Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Sat, 25 Jun 2022 06:05:03 -0700 Subject: [PATCH] [FFmpeg Decoder] Don't post redundant meta event Don't post a metadata event on open, because inputs will relay it to the player as an early notification bubble, which is unwanted. Signed-off-by: Christopher Snowhill --- Plugins/FFMPEG/FFMPEGDecoder.m | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Plugins/FFMPEG/FFMPEGDecoder.m b/Plugins/FFMPEG/FFMPEGDecoder.m index 1e03c72ee..eb1548319 100644 --- a/Plugins/FFMPEG/FFMPEGDecoder.m +++ b/Plugins/FFMPEG/FFMPEGDecoder.m @@ -491,11 +491,6 @@ static uint8_t reverse_bits[0x100]; [self readAudio:prebufferedAudioData frames:1024]; } - if(metadataUpdated) { - [self willChangeValueForKey:@"metadata"]; - [self didChangeValueForKey:@"metadata"]; - } - return YES; }