| 5884 | } |
| 5885 | |
| 5886 | static char *get_ffmpeg_metadata_value( AVDictionary *m, char *key ) |
| 5887 | { |
| 5888 | AVDictionaryEntry *tag = NULL; |
| 5889 | |
| 5890 | while ( (tag = av_dict_get(m, "", tag, AV_DICT_IGNORE_SUFFIX)) ) |
| 5891 | { |
| 5892 | if ( !strcmp( key, tag->key ) ) |
| 5893 | { |
| 5894 | return tag->value; |
| 5895 | } |
| 5896 | } |
| 5897 | return NULL; |
| 5898 | } |
| 5899 | |
| 5900 | static void add_ffmpeg_attachment( hb_title_t *title, hb_stream_t *stream, int id ) |
| 5901 | { |
no outgoing calls
no test coverage detected