You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

703 lines
22KB

  1. /*
  2. * filter layer
  3. * Copyright (c) 2007 Bobby Bingham
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /* #define DEBUG */
  22. #include "libavutil/pixdesc.h"
  23. #include "libavutil/rational.h"
  24. #include "libavutil/audioconvert.h"
  25. #include "libavutil/imgutils.h"
  26. #include "libavcodec/avcodec.h"
  27. #include "avfilter.h"
  28. #include "internal.h"
  29. unsigned avfilter_version(void) {
  30. return LIBAVFILTER_VERSION_INT;
  31. }
  32. const char *avfilter_configuration(void)
  33. {
  34. return LIBAV_CONFIGURATION;
  35. }
  36. const char *avfilter_license(void)
  37. {
  38. #define LICENSE_PREFIX "libavfilter license: "
  39. return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1;
  40. }
  41. AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask)
  42. {
  43. AVFilterBufferRef *ret = av_malloc(sizeof(AVFilterBufferRef));
  44. if (!ret)
  45. return NULL;
  46. *ret = *ref;
  47. if (ref->type == AVMEDIA_TYPE_VIDEO) {
  48. ret->video = av_malloc(sizeof(AVFilterBufferRefVideoProps));
  49. if (!ret->video) {
  50. av_free(ret);
  51. return NULL;
  52. }
  53. *ret->video = *ref->video;
  54. } else if (ref->type == AVMEDIA_TYPE_AUDIO) {
  55. ret->audio = av_malloc(sizeof(AVFilterBufferRefAudioProps));
  56. if (!ret->audio) {
  57. av_free(ret);
  58. return NULL;
  59. }
  60. *ret->audio = *ref->audio;
  61. }
  62. ret->perms &= pmask;
  63. ret->buf->refcount ++;
  64. return ret;
  65. }
  66. void avfilter_unref_buffer(AVFilterBufferRef *ref)
  67. {
  68. if (!ref)
  69. return;
  70. if (!(--ref->buf->refcount))
  71. ref->buf->free(ref->buf);
  72. av_free(ref->video);
  73. av_free(ref->audio);
  74. av_free(ref);
  75. }
  76. void avfilter_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
  77. AVFilterPad **pads, AVFilterLink ***links,
  78. AVFilterPad *newpad)
  79. {
  80. unsigned i;
  81. idx = FFMIN(idx, *count);
  82. *pads = av_realloc(*pads, sizeof(AVFilterPad) * (*count + 1));
  83. *links = av_realloc(*links, sizeof(AVFilterLink*) * (*count + 1));
  84. memmove(*pads +idx+1, *pads +idx, sizeof(AVFilterPad) * (*count-idx));
  85. memmove(*links+idx+1, *links+idx, sizeof(AVFilterLink*) * (*count-idx));
  86. memcpy(*pads+idx, newpad, sizeof(AVFilterPad));
  87. (*links)[idx] = NULL;
  88. (*count)++;
  89. for (i = idx+1; i < *count; i++)
  90. if (*links[i])
  91. (*(unsigned *)((uint8_t *) *links[i] + padidx_off))++;
  92. }
  93. int avfilter_link(AVFilterContext *src, unsigned srcpad,
  94. AVFilterContext *dst, unsigned dstpad)
  95. {
  96. AVFilterLink *link;
  97. if (src->output_count <= srcpad || dst->input_count <= dstpad ||
  98. src->outputs[srcpad] || dst->inputs[dstpad])
  99. return -1;
  100. if (src->output_pads[srcpad].type != dst->input_pads[dstpad].type) {
  101. av_log(src, AV_LOG_ERROR,
  102. "Media type mismatch between the '%s' filter output pad %d and the '%s' filter input pad %d\n",
  103. src->name, srcpad, dst->name, dstpad);
  104. return AVERROR(EINVAL);
  105. }
  106. src->outputs[srcpad] =
  107. dst-> inputs[dstpad] = link = av_mallocz(sizeof(AVFilterLink));
  108. link->src = src;
  109. link->dst = dst;
  110. link->srcpad = &src->output_pads[srcpad];
  111. link->dstpad = &dst->input_pads[dstpad];
  112. link->type = src->output_pads[srcpad].type;
  113. assert(PIX_FMT_NONE == -1 && AV_SAMPLE_FMT_NONE == -1);
  114. link->format = -1;
  115. return 0;
  116. }
  117. int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
  118. unsigned filt_srcpad_idx, unsigned filt_dstpad_idx)
  119. {
  120. int ret;
  121. unsigned dstpad_idx = link->dstpad - link->dst->input_pads;
  122. av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s' "
  123. "between the filter '%s' and the filter '%s'\n",
  124. filt->name, link->src->name, link->dst->name);
  125. link->dst->inputs[dstpad_idx] = NULL;
  126. if ((ret = avfilter_link(filt, filt_dstpad_idx, link->dst, dstpad_idx)) < 0) {
  127. /* failed to link output filter to new filter */
  128. link->dst->inputs[dstpad_idx] = link;
  129. return ret;
  130. }
  131. /* re-hookup the link to the new destination filter we inserted */
  132. link->dst = filt;
  133. link->dstpad = &filt->input_pads[filt_srcpad_idx];
  134. filt->inputs[filt_srcpad_idx] = link;
  135. /* if any information on supported media formats already exists on the
  136. * link, we need to preserve that */
  137. if (link->out_formats)
  138. avfilter_formats_changeref(&link->out_formats,
  139. &filt->outputs[filt_dstpad_idx]->out_formats);
  140. return 0;
  141. }
  142. int avfilter_config_links(AVFilterContext *filter)
  143. {
  144. int (*config_link)(AVFilterLink *);
  145. unsigned i;
  146. int ret;
  147. for (i = 0; i < filter->input_count; i ++) {
  148. AVFilterLink *link = filter->inputs[i];
  149. if (!link) continue;
  150. switch (link->init_state) {
  151. case AVLINK_INIT:
  152. continue;
  153. case AVLINK_STARTINIT:
  154. av_log(filter, AV_LOG_INFO, "circular filter chain detected\n");
  155. return 0;
  156. case AVLINK_UNINIT:
  157. link->init_state = AVLINK_STARTINIT;
  158. if ((ret = avfilter_config_links(link->src)) < 0)
  159. return ret;
  160. if (!(config_link = link->srcpad->config_props))
  161. config_link = avfilter_default_config_output_link;
  162. if ((ret = config_link(link)) < 0)
  163. return ret;
  164. if (link->time_base.num == 0 && link->time_base.den == 0)
  165. link->time_base = link->src && link->src->input_count ?
  166. link->src->inputs[0]->time_base : AV_TIME_BASE_Q;
  167. if (link->sample_aspect_ratio.num == 0 && link->sample_aspect_ratio.den == 0)
  168. link->sample_aspect_ratio = link->src->input_count ?
  169. link->src->inputs[0]->sample_aspect_ratio : (AVRational){1,1};
  170. if (link->sample_rate == 0 && link->src && link->src->input_count)
  171. link->sample_rate = link->src->inputs[0]->sample_rate;
  172. if (link->channel_layout == 0 && link->src && link->src->input_count)
  173. link->channel_layout = link->src->inputs[0]->channel_layout;
  174. if ((config_link = link->dstpad->config_props))
  175. if ((ret = config_link(link)) < 0)
  176. return ret;
  177. link->init_state = AVLINK_INIT;
  178. }
  179. }
  180. return 0;
  181. }
  182. #ifdef DEBUG
  183. static char *ff_get_ref_perms_string(char *buf, size_t buf_size, int perms)
  184. {
  185. snprintf(buf, buf_size, "%s%s%s%s%s%s",
  186. perms & AV_PERM_READ ? "r" : "",
  187. perms & AV_PERM_WRITE ? "w" : "",
  188. perms & AV_PERM_PRESERVE ? "p" : "",
  189. perms & AV_PERM_REUSE ? "u" : "",
  190. perms & AV_PERM_REUSE2 ? "U" : "",
  191. perms & AV_PERM_NEG_LINESIZES ? "n" : "");
  192. return buf;
  193. }
  194. #endif
  195. static void ff_dlog_ref(void *ctx, AVFilterBufferRef *ref, int end)
  196. {
  197. av_unused char buf[16];
  198. av_dlog(ctx,
  199. "ref[%p buf:%p refcount:%d perms:%s data:%p linesize[%d, %d, %d, %d] pts:%"PRId64" pos:%"PRId64,
  200. ref, ref->buf, ref->buf->refcount, ff_get_ref_perms_string(buf, sizeof(buf), ref->perms), ref->data[0],
  201. ref->linesize[0], ref->linesize[1], ref->linesize[2], ref->linesize[3],
  202. ref->pts, ref->pos);
  203. if (ref->video) {
  204. av_dlog(ctx, " a:%d/%d s:%dx%d i:%c iskey:%d type:%c",
  205. ref->video->pixel_aspect.num, ref->video->pixel_aspect.den,
  206. ref->video->w, ref->video->h,
  207. !ref->video->interlaced ? 'P' : /* Progressive */
  208. ref->video->top_field_first ? 'T' : 'B', /* Top / Bottom */
  209. ref->video->key_frame,
  210. av_get_picture_type_char(ref->video->pict_type));
  211. }
  212. if (ref->audio) {
  213. av_dlog(ctx, " cl:%"PRId64"d sn:%d s:%d sr:%d p:%d",
  214. ref->audio->channel_layout,
  215. ref->audio->nb_samples,
  216. ref->audio->size,
  217. ref->audio->sample_rate,
  218. ref->audio->planar);
  219. }
  220. av_dlog(ctx, "]%s", end ? "\n" : "");
  221. }
  222. static void ff_dlog_link(void *ctx, AVFilterLink *link, int end)
  223. {
  224. if (link->type == AVMEDIA_TYPE_VIDEO) {
  225. av_dlog(ctx,
  226. "link[%p s:%dx%d fmt:%-16s %-16s->%-16s]%s",
  227. link, link->w, link->h,
  228. av_pix_fmt_descriptors[link->format].name,
  229. link->src ? link->src->filter->name : "",
  230. link->dst ? link->dst->filter->name : "",
  231. end ? "\n" : "");
  232. } else {
  233. char buf[128];
  234. av_get_channel_layout_string(buf, sizeof(buf), -1, link->channel_layout);
  235. av_dlog(ctx,
  236. "link[%p r:%"PRId64" cl:%s fmt:%-16s %-16s->%-16s]%s",
  237. link, link->sample_rate, buf,
  238. av_get_sample_fmt_name(link->format),
  239. link->src ? link->src->filter->name : "",
  240. link->dst ? link->dst->filter->name : "",
  241. end ? "\n" : "");
  242. }
  243. }
  244. #define FF_DPRINTF_START(ctx, func) av_dlog(NULL, "%-16s: ", #func)
  245. AVFilterBufferRef *avfilter_get_video_buffer(AVFilterLink *link, int perms, int w, int h)
  246. {
  247. AVFilterBufferRef *ret = NULL;
  248. av_unused char buf[16];
  249. FF_DPRINTF_START(NULL, get_video_buffer); ff_dlog_link(NULL, link, 0);
  250. av_dlog(NULL, " perms:%s w:%d h:%d\n", ff_get_ref_perms_string(buf, sizeof(buf), perms), w, h);
  251. if (link->dstpad->get_video_buffer)
  252. ret = link->dstpad->get_video_buffer(link, perms, w, h);
  253. if (!ret)
  254. ret = avfilter_default_get_video_buffer(link, perms, w, h);
  255. if (ret)
  256. ret->type = AVMEDIA_TYPE_VIDEO;
  257. FF_DPRINTF_START(NULL, get_video_buffer); ff_dlog_link(NULL, link, 0); av_dlog(NULL, " returning "); ff_dlog_ref(NULL, ret, 1);
  258. return ret;
  259. }
  260. AVFilterBufferRef *
  261. avfilter_get_video_buffer_ref_from_arrays(uint8_t *data[4], int linesize[4], int perms,
  262. int w, int h, enum PixelFormat format)
  263. {
  264. AVFilterBuffer *pic = av_mallocz(sizeof(AVFilterBuffer));
  265. AVFilterBufferRef *picref = av_mallocz(sizeof(AVFilterBufferRef));
  266. if (!pic || !picref)
  267. goto fail;
  268. picref->buf = pic;
  269. picref->buf->free = ff_avfilter_default_free_buffer;
  270. if (!(picref->video = av_mallocz(sizeof(AVFilterBufferRefVideoProps))))
  271. goto fail;
  272. pic->w = picref->video->w = w;
  273. pic->h = picref->video->h = h;
  274. /* make sure the buffer gets read permission or it's useless for output */
  275. picref->perms = perms | AV_PERM_READ;
  276. pic->refcount = 1;
  277. picref->type = AVMEDIA_TYPE_VIDEO;
  278. pic->format = picref->format = format;
  279. memcpy(pic->data, data, 4*sizeof(data[0]));
  280. memcpy(pic->linesize, linesize, 4*sizeof(linesize[0]));
  281. memcpy(picref->data, pic->data, sizeof(picref->data));
  282. memcpy(picref->linesize, pic->linesize, sizeof(picref->linesize));
  283. return picref;
  284. fail:
  285. if (picref && picref->video)
  286. av_free(picref->video);
  287. av_free(picref);
  288. av_free(pic);
  289. return NULL;
  290. }
  291. AVFilterBufferRef *avfilter_get_audio_buffer(AVFilterLink *link, int perms,
  292. enum AVSampleFormat sample_fmt, int size,
  293. uint64_t channel_layout, int planar)
  294. {
  295. AVFilterBufferRef *ret = NULL;
  296. if (link->dstpad->get_audio_buffer)
  297. ret = link->dstpad->get_audio_buffer(link, perms, sample_fmt, size, channel_layout, planar);
  298. if (!ret)
  299. ret = avfilter_default_get_audio_buffer(link, perms, sample_fmt, size, channel_layout, planar);
  300. if (ret)
  301. ret->type = AVMEDIA_TYPE_AUDIO;
  302. return ret;
  303. }
  304. int avfilter_request_frame(AVFilterLink *link)
  305. {
  306. FF_DPRINTF_START(NULL, request_frame); ff_dlog_link(NULL, link, 1);
  307. if (link->srcpad->request_frame)
  308. return link->srcpad->request_frame(link);
  309. else if (link->src->inputs[0])
  310. return avfilter_request_frame(link->src->inputs[0]);
  311. else return -1;
  312. }
  313. int avfilter_poll_frame(AVFilterLink *link)
  314. {
  315. int i, min = INT_MAX;
  316. if (link->srcpad->poll_frame)
  317. return link->srcpad->poll_frame(link);
  318. for (i = 0; i < link->src->input_count; i++) {
  319. int val;
  320. if (!link->src->inputs[i])
  321. return -1;
  322. val = avfilter_poll_frame(link->src->inputs[i]);
  323. min = FFMIN(min, val);
  324. }
  325. return min;
  326. }
  327. /* XXX: should we do the duplicating of the picture ref here, instead of
  328. * forcing the source filter to do it? */
  329. void avfilter_start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
  330. {
  331. void (*start_frame)(AVFilterLink *, AVFilterBufferRef *);
  332. AVFilterPad *dst = link->dstpad;
  333. int perms = picref->perms;
  334. FF_DPRINTF_START(NULL, start_frame); ff_dlog_link(NULL, link, 0); av_dlog(NULL, " "); ff_dlog_ref(NULL, picref, 1);
  335. if (!(start_frame = dst->start_frame))
  336. start_frame = avfilter_default_start_frame;
  337. if (picref->linesize[0] < 0)
  338. perms |= AV_PERM_NEG_LINESIZES;
  339. /* prepare to copy the picture if it has insufficient permissions */
  340. if ((dst->min_perms & perms) != dst->min_perms || dst->rej_perms & perms) {
  341. av_log(link->dst, AV_LOG_DEBUG,
  342. "frame copy needed (have perms %x, need %x, reject %x)\n",
  343. picref->perms,
  344. link->dstpad->min_perms, link->dstpad->rej_perms);
  345. link->cur_buf = avfilter_get_video_buffer(link, dst->min_perms, link->w, link->h);
  346. link->src_buf = picref;
  347. avfilter_copy_buffer_ref_props(link->cur_buf, link->src_buf);
  348. }
  349. else
  350. link->cur_buf = picref;
  351. start_frame(link, link->cur_buf);
  352. }
  353. void avfilter_end_frame(AVFilterLink *link)
  354. {
  355. void (*end_frame)(AVFilterLink *);
  356. if (!(end_frame = link->dstpad->end_frame))
  357. end_frame = avfilter_default_end_frame;
  358. end_frame(link);
  359. /* unreference the source picture if we're feeding the destination filter
  360. * a copied version dues to permission issues */
  361. if (link->src_buf) {
  362. avfilter_unref_buffer(link->src_buf);
  363. link->src_buf = NULL;
  364. }
  365. }
  366. void avfilter_draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
  367. {
  368. uint8_t *src[4], *dst[4];
  369. int i, j, vsub;
  370. void (*draw_slice)(AVFilterLink *, int, int, int);
  371. FF_DPRINTF_START(NULL, draw_slice); ff_dlog_link(NULL, link, 0); av_dlog(NULL, " y:%d h:%d dir:%d\n", y, h, slice_dir);
  372. /* copy the slice if needed for permission reasons */
  373. if (link->src_buf) {
  374. vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
  375. for (i = 0; i < 4; i++) {
  376. if (link->src_buf->data[i]) {
  377. src[i] = link->src_buf-> data[i] +
  378. (y >> (i==1 || i==2 ? vsub : 0)) * link->src_buf-> linesize[i];
  379. dst[i] = link->cur_buf->data[i] +
  380. (y >> (i==1 || i==2 ? vsub : 0)) * link->cur_buf->linesize[i];
  381. } else
  382. src[i] = dst[i] = NULL;
  383. }
  384. for (i = 0; i < 4; i++) {
  385. int planew =
  386. av_image_get_linesize(link->format, link->cur_buf->video->w, i);
  387. if (!src[i]) continue;
  388. for (j = 0; j < h >> (i==1 || i==2 ? vsub : 0); j++) {
  389. memcpy(dst[i], src[i], planew);
  390. src[i] += link->src_buf->linesize[i];
  391. dst[i] += link->cur_buf->linesize[i];
  392. }
  393. }
  394. }
  395. if (!(draw_slice = link->dstpad->draw_slice))
  396. draw_slice = avfilter_default_draw_slice;
  397. draw_slice(link, y, h, slice_dir);
  398. }
  399. void avfilter_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref)
  400. {
  401. void (*filter_samples)(AVFilterLink *, AVFilterBufferRef *);
  402. AVFilterPad *dst = link->dstpad;
  403. FF_DPRINTF_START(NULL, filter_samples); ff_dlog_link(NULL, link, 1);
  404. if (!(filter_samples = dst->filter_samples))
  405. filter_samples = avfilter_default_filter_samples;
  406. /* prepare to copy the samples if the buffer has insufficient permissions */
  407. if ((dst->min_perms & samplesref->perms) != dst->min_perms ||
  408. dst->rej_perms & samplesref->perms) {
  409. av_log(link->dst, AV_LOG_DEBUG,
  410. "Copying audio data in avfilter (have perms %x, need %x, reject %x)\n",
  411. samplesref->perms, link->dstpad->min_perms, link->dstpad->rej_perms);
  412. link->cur_buf = avfilter_default_get_audio_buffer(link, dst->min_perms,
  413. samplesref->format,
  414. samplesref->audio->size,
  415. samplesref->audio->channel_layout,
  416. samplesref->audio->planar);
  417. link->cur_buf->pts = samplesref->pts;
  418. link->cur_buf->audio->sample_rate = samplesref->audio->sample_rate;
  419. /* Copy actual data into new samples buffer */
  420. memcpy(link->cur_buf->data[0], samplesref->data[0], samplesref->audio->size);
  421. avfilter_unref_buffer(samplesref);
  422. } else
  423. link->cur_buf = samplesref;
  424. filter_samples(link, link->cur_buf);
  425. }
  426. #define MAX_REGISTERED_AVFILTERS_NB 64
  427. static AVFilter *registered_avfilters[MAX_REGISTERED_AVFILTERS_NB + 1];
  428. static int next_registered_avfilter_idx = 0;
  429. AVFilter *avfilter_get_by_name(const char *name)
  430. {
  431. int i;
  432. for (i = 0; registered_avfilters[i]; i++)
  433. if (!strcmp(registered_avfilters[i]->name, name))
  434. return registered_avfilters[i];
  435. return NULL;
  436. }
  437. int avfilter_register(AVFilter *filter)
  438. {
  439. if (next_registered_avfilter_idx == MAX_REGISTERED_AVFILTERS_NB)
  440. return -1;
  441. registered_avfilters[next_registered_avfilter_idx++] = filter;
  442. return 0;
  443. }
  444. AVFilter **av_filter_next(AVFilter **filter)
  445. {
  446. return filter ? ++filter : &registered_avfilters[0];
  447. }
  448. void avfilter_uninit(void)
  449. {
  450. memset(registered_avfilters, 0, sizeof(registered_avfilters));
  451. next_registered_avfilter_idx = 0;
  452. }
  453. static int pad_count(const AVFilterPad *pads)
  454. {
  455. int count;
  456. for(count = 0; pads->name; count ++) pads ++;
  457. return count;
  458. }
  459. static const char *filter_name(void *p)
  460. {
  461. AVFilterContext *filter = p;
  462. return filter->filter->name;
  463. }
  464. static const AVClass avfilter_class = {
  465. "AVFilter",
  466. filter_name,
  467. NULL,
  468. LIBAVUTIL_VERSION_INT,
  469. };
  470. int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name)
  471. {
  472. AVFilterContext *ret;
  473. *filter_ctx = NULL;
  474. if (!filter)
  475. return AVERROR(EINVAL);
  476. ret = av_mallocz(sizeof(AVFilterContext));
  477. if (!ret)
  478. return AVERROR(ENOMEM);
  479. ret->av_class = &avfilter_class;
  480. ret->filter = filter;
  481. ret->name = inst_name ? av_strdup(inst_name) : NULL;
  482. if (filter->priv_size) {
  483. ret->priv = av_mallocz(filter->priv_size);
  484. if (!ret->priv)
  485. goto err;
  486. }
  487. ret->input_count = pad_count(filter->inputs);
  488. if (ret->input_count) {
  489. ret->input_pads = av_malloc(sizeof(AVFilterPad) * ret->input_count);
  490. if (!ret->input_pads)
  491. goto err;
  492. memcpy(ret->input_pads, filter->inputs, sizeof(AVFilterPad) * ret->input_count);
  493. ret->inputs = av_mallocz(sizeof(AVFilterLink*) * ret->input_count);
  494. if (!ret->inputs)
  495. goto err;
  496. }
  497. ret->output_count = pad_count(filter->outputs);
  498. if (ret->output_count) {
  499. ret->output_pads = av_malloc(sizeof(AVFilterPad) * ret->output_count);
  500. if (!ret->output_pads)
  501. goto err;
  502. memcpy(ret->output_pads, filter->outputs, sizeof(AVFilterPad) * ret->output_count);
  503. ret->outputs = av_mallocz(sizeof(AVFilterLink*) * ret->output_count);
  504. if (!ret->outputs)
  505. goto err;
  506. }
  507. *filter_ctx = ret;
  508. return 0;
  509. err:
  510. av_freep(&ret->inputs);
  511. av_freep(&ret->input_pads);
  512. ret->input_count = 0;
  513. av_freep(&ret->outputs);
  514. av_freep(&ret->output_pads);
  515. ret->output_count = 0;
  516. av_freep(&ret->priv);
  517. av_free(ret);
  518. return AVERROR(ENOMEM);
  519. }
  520. void avfilter_free(AVFilterContext *filter)
  521. {
  522. int i;
  523. AVFilterLink *link;
  524. if (filter->filter->uninit)
  525. filter->filter->uninit(filter);
  526. for (i = 0; i < filter->input_count; i++) {
  527. if ((link = filter->inputs[i])) {
  528. if (link->src)
  529. link->src->outputs[link->srcpad - link->src->output_pads] = NULL;
  530. avfilter_formats_unref(&link->in_formats);
  531. avfilter_formats_unref(&link->out_formats);
  532. }
  533. av_freep(&link);
  534. }
  535. for (i = 0; i < filter->output_count; i++) {
  536. if ((link = filter->outputs[i])) {
  537. if (link->dst)
  538. link->dst->inputs[link->dstpad - link->dst->input_pads] = NULL;
  539. avfilter_formats_unref(&link->in_formats);
  540. avfilter_formats_unref(&link->out_formats);
  541. }
  542. av_freep(&link);
  543. }
  544. av_freep(&filter->name);
  545. av_freep(&filter->input_pads);
  546. av_freep(&filter->output_pads);
  547. av_freep(&filter->inputs);
  548. av_freep(&filter->outputs);
  549. av_freep(&filter->priv);
  550. av_free(filter);
  551. }
  552. int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
  553. {
  554. int ret=0;
  555. if (filter->filter->init)
  556. ret = filter->filter->init(filter, args, opaque);
  557. return ret;
  558. }
  559. int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src)
  560. {
  561. if (dst->type != AVMEDIA_TYPE_VIDEO)
  562. return AVERROR(EINVAL);
  563. dst->pts = src->pts;
  564. dst->format = src->format;
  565. dst->video->w = src->width;
  566. dst->video->h = src->height;
  567. dst->video->pixel_aspect = src->sample_aspect_ratio;
  568. dst->video->interlaced = src->interlaced_frame;
  569. dst->video->top_field_first = src->top_field_first;
  570. dst->video->key_frame = src->key_frame;
  571. dst->video->pict_type = src->pict_type;
  572. return 0;
  573. }