mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-01 08:21:02 +00:00
avcodec/avpacket: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
0b3092aed3
commit
aa4edbb633
@ -316,7 +316,7 @@ uint8_t *av_packet_pack_dictionary(AVDictionary *dict, size_t *size)
|
||||
const AVDictionaryEntry *t = NULL;
|
||||
size_t total_length = 0;
|
||||
|
||||
while ((t = av_dict_get(dict, "", t, AV_DICT_IGNORE_SUFFIX))) {
|
||||
while ((t = av_dict_iterate(dict, t))) {
|
||||
for (int i = 0; i < 2; i++) {
|
||||
const char *str = i ? t->value : t->key;
|
||||
const size_t len = strlen(str) + 1;
|
||||
|
Loading…
Reference in New Issue
Block a user