Lines Matching defs:tmp
622 char *tmp;
624 tmp = av_asprintf("%s%s", prefix, arg);
625 if (!tmp)
627 err = hw_device_init_from_string(tmp, NULL);
628 av_free(tmp);
638 char *tmp = av_asprintf("%s%s", prefix, arg);
640 if (!tmp)
643 err = hw_device_init_from_string(tmp, NULL);
644 av_free(tmp);
2223 AVChapter **tmp;
2226 tmp = av_realloc_f(os->chapters, is->nb_chapters + os->nb_chapters, sizeof(*os->chapters));
2227 if (!tmp)
2229 os->chapters = tmp;