You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
lavu/dict: cosmetic realign.
This commit is contained in:
@@ -88,7 +88,7 @@ int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags
|
|||||||
if (flags & AV_DICT_DONT_STRDUP_KEY) {
|
if (flags & AV_DICT_DONT_STRDUP_KEY) {
|
||||||
m->elems[m->count].key = (char*)(intptr_t)key;
|
m->elems[m->count].key = (char*)(intptr_t)key;
|
||||||
} else
|
} else
|
||||||
m->elems[m->count].key = av_strdup(key );
|
m->elems[m->count].key = av_strdup(key);
|
||||||
if (flags & AV_DICT_DONT_STRDUP_VAL) {
|
if (flags & AV_DICT_DONT_STRDUP_VAL) {
|
||||||
m->elems[m->count].value = (char*)(intptr_t)value;
|
m->elems[m->count].value = (char*)(intptr_t)value;
|
||||||
} else if (oldval && flags & AV_DICT_APPEND) {
|
} else if (oldval && flags & AV_DICT_APPEND) {
|
||||||
|
Reference in New Issue
Block a user