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.

853 lines
27KB

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