finds AVInputFormat based on input format's short name. Definition at line 164 of file utils.c. References first_iformat. { AVInputFormat *fmt; for(fmt = first_iformat; fmt != NULL; fmt = fmt->next) { if (!strcmp(fmt->name, short_name)) return fmt; } return NULL; }
|