summaryrefslogtreecommitdiff
path: root/libavformat/hls.c
diff options
context:
space:
mode:
authorMarvin Scholz <epirat07@gmail.com>2022-11-26 15:46:37 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-12-01 11:21:14 +0100
commit6c4f23cc206f0b034ebfb767d0f35c586c5d2b1e (patch)
treea544834a6c8f6af03381ef88c73fff8f5af77ae8 /libavformat/hls.c
parentb463ef03397acd597ae9069f2ebbcd38fb6bdceb (diff)
downloadffmpeg-6c4f23cc206f0b034ebfb767d0f35c586c5d2b1e.tar.gz
avformat/hls: use av_dict_iterate
And constify oldentry too while at it. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/hls.c')
-rw-r--r--libavformat/hls.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 402eb2b5a0..926d053939 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -1104,10 +1104,10 @@ static void parse_id3(AVFormatContext *s, AVIOContext *pb,
static int id3_has_changed_values(struct playlist *pls, AVDictionary *metadata,
ID3v2ExtraMetaAPIC *apic)
{
- AVDictionaryEntry *entry = NULL;
- AVDictionaryEntry *oldentry;
+ const AVDictionaryEntry *entry = NULL;
+ const AVDictionaryEntry *oldentry;
/* check that no keys have changed values */
- while ((entry = av_dict_get(metadata, "", entry, AV_DICT_IGNORE_SUFFIX))) {
+ while ((entry = av_dict_iterate(metadata, entry))) {
oldentry = av_dict_get(pls->id3_initial, entry->key, NULL, AV_DICT_MATCH_CASE);
if (!oldentry || strcmp(oldentry->value, entry->value) != 0)
return 1;