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.

739 lines
23KB

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