MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / find_object

Function find_object

libavcodec/pgssubdec.c:116–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114}
115
116static PGSSubObject * find_object(int id, PGSSubObjects *objects)
117{
118 int i;
119
120 for (i = 0; i < objects->count; i++) {
121 if (objects->object[i].id == id)
122 return &objects->object[i];
123 }
124 return NULL;
125}
126
127static PGSSubPalette * find_palette(int id, PGSSubPalettes *palettes)
128{

Callers 2

parse_object_segmentFunction · 0.85
display_end_segmentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected