MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / get_ffmpeg_metadata_value

Function get_ffmpeg_metadata_value

libhb/stream.c:5886–5898  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5884}
5885
5886static 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
5900static void add_ffmpeg_attachment( hb_title_t *title, hb_stream_t *stream, int id )
5901{

Callers 2

add_ffmpeg_attachmentFunction · 0.85
add_ffmpeg_coverartFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected