| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:40:40 +00:00
										 |  |  |  * filter layer | 
					
						
							| 
									
										
										
										
											2010-11-28 10:22:58 +00:00
										 |  |  |  * Copyright (c) 2007 Bobby Bingham | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-06 22:07:32 +00:00
										 |  |  | /* #define DEBUG */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-31 16:33:29 +00:00
										 |  |  | #include "libavutil/pixdesc.h"
 | 
					
						
							| 
									
										
										
										
											2010-10-10 22:26:14 +00:00
										 |  |  | #include "libavutil/rational.h"
 | 
					
						
							| 
									
										
										
										
											2011-02-07 14:37:08 +01:00
										 |  |  | #include "libavutil/audioconvert.h"
 | 
					
						
							|  |  |  | #include "libavutil/imgutils.h"
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | #include "avfilter.h"
 | 
					
						
							| 
									
										
										
										
											2010-07-18 22:37:39 +00:00
										 |  |  | #include "internal.h"
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-08 18:43:38 +00:00
										 |  |  | unsigned avfilter_version(void) { | 
					
						
							|  |  |  |     return LIBAVFILTER_VERSION_INT; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-03 14:31:25 +00:00
										 |  |  | const char *avfilter_configuration(void) | 
					
						
							| 
									
										
										
										
											2009-11-18 17:15:17 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-17 17:01:10 +01:00
										 |  |  |     return FFMPEG_CONFIGURATION; | 
					
						
							| 
									
										
										
										
											2009-11-18 17:15:17 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-03 14:31:25 +00:00
										 |  |  | const char *avfilter_license(void) | 
					
						
							| 
									
										
										
										
											2009-11-18 17:15:17 +00:00
										 |  |  | { | 
					
						
							|  |  |  | #define LICENSE_PREFIX "libavfilter license: "
 | 
					
						
							| 
									
										
										
										
											2011-03-17 16:57:37 +01:00
										 |  |  |     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; | 
					
						
							| 
									
										
										
										
											2009-11-18 17:15:17 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:27 +00:00
										 |  |  | AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:19 +00:00
										 |  |  |     AVFilterBufferRef *ret = av_malloc(sizeof(AVFilterBufferRef)); | 
					
						
							| 
									
										
										
										
											2010-08-17 15:12:22 +00:00
										 |  |  |     if (!ret) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:38:13 +00:00
										 |  |  |     *ret = *ref; | 
					
						
							| 
									
										
										
										
											2010-08-11 11:06:04 +00:00
										 |  |  |     if (ref->type == AVMEDIA_TYPE_VIDEO) { | 
					
						
							|  |  |  |         ret->video = av_malloc(sizeof(AVFilterBufferRefVideoProps)); | 
					
						
							| 
									
										
										
										
											2010-08-17 15:12:22 +00:00
										 |  |  |         if (!ret->video) { | 
					
						
							|  |  |  |             av_free(ret); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-08-11 11:06:04 +00:00
										 |  |  |         *ret->video = *ref->video; | 
					
						
							| 
									
										
										
										
											2010-08-17 18:08:03 +00:00
										 |  |  |     } else if (ref->type == AVMEDIA_TYPE_AUDIO) { | 
					
						
							|  |  |  |         ret->audio = av_malloc(sizeof(AVFilterBufferRefAudioProps)); | 
					
						
							|  |  |  |         if (!ret->audio) { | 
					
						
							|  |  |  |             av_free(ret); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         *ret->audio = *ref->audio; | 
					
						
							| 
									
										
										
										
											2010-08-11 11:06:04 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-15 21:36:06 +00:00
										 |  |  |     ret->perms &= pmask; | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:27 +00:00
										 |  |  |     ret->buf->refcount ++; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:27 +00:00
										 |  |  | void avfilter_unref_buffer(AVFilterBufferRef *ref) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-15 17:21:15 +00:00
										 |  |  |     if (!ref) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     if (!(--ref->buf->refcount)) | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:27 +00:00
										 |  |  |         ref->buf->free(ref->buf); | 
					
						
							| 
									
										
										
										
											2010-08-11 11:06:04 +00:00
										 |  |  |     av_free(ref->video); | 
					
						
							| 
									
										
										
										
											2010-08-17 18:08:03 +00:00
										 |  |  |     av_free(ref->audio); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |     av_free(ref); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:22 +00:00
										 |  |  | void avfilter_insert_pad(unsigned idx, unsigned *count, size_t padidx_off, | 
					
						
							|  |  |  |                          AVFilterPad **pads, AVFilterLink ***links, | 
					
						
							|  |  |  |                          AVFilterPad *newpad) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     unsigned i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     idx = FFMIN(idx, *count); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *pads  = av_realloc(*pads,  sizeof(AVFilterPad)   * (*count + 1)); | 
					
						
							|  |  |  |     *links = av_realloc(*links, sizeof(AVFilterLink*) * (*count + 1)); | 
					
						
							|  |  |  |     memmove(*pads +idx+1, *pads +idx, sizeof(AVFilterPad)   * (*count-idx)); | 
					
						
							|  |  |  |     memmove(*links+idx+1, *links+idx, sizeof(AVFilterLink*) * (*count-idx)); | 
					
						
							|  |  |  |     memcpy(*pads+idx, newpad, sizeof(AVFilterPad)); | 
					
						
							|  |  |  |     (*links)[idx] = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     (*count)++; | 
					
						
							|  |  |  |     for (i = idx+1; i < *count; i++) | 
					
						
							|  |  |  |         if (*links[i]) | 
					
						
							|  |  |  |             (*(unsigned *)((uint8_t *) *links[i] + padidx_off))++; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:22 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | int avfilter_link(AVFilterContext *src, unsigned srcpad, | 
					
						
							|  |  |  |                   AVFilterContext *dst, unsigned dstpad) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AVFilterLink *link; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     if (src->output_count <= srcpad || dst->input_count <= dstpad || | 
					
						
							|  |  |  |         src->outputs[srcpad]        || dst->inputs[dstpad]) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-13 01:00:36 +00:00
										 |  |  |     if (src->output_pads[srcpad].type != dst->input_pads[dstpad].type) { | 
					
						
							|  |  |  |         av_log(src, AV_LOG_ERROR, | 
					
						
							|  |  |  |                "Media type mismatch between the '%s' filter output pad %d and the '%s' filter input pad %d\n", | 
					
						
							|  |  |  |                src->name, srcpad, dst->name, dstpad); | 
					
						
							|  |  |  |         return AVERROR(EINVAL); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |     src->outputs[srcpad] = | 
					
						
							| 
									
										
										
										
											2008-02-15 21:41:19 +00:00
										 |  |  |     dst-> inputs[dstpad] = link = av_mallocz(sizeof(AVFilterLink)); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:36:29 +00:00
										 |  |  |     link->src     = src; | 
					
						
							|  |  |  |     link->dst     = dst; | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |     link->srcpad  = &src->output_pads[srcpad]; | 
					
						
							|  |  |  |     link->dstpad  = &dst->input_pads[dstpad]; | 
					
						
							| 
									
										
										
										
											2010-07-22 11:12:47 +00:00
										 |  |  |     link->type    = src->output_pads[srcpad].type; | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |     assert(PIX_FMT_NONE == -1 && AV_SAMPLE_FMT_NONE == -1); | 
					
						
							| 
									
										
										
										
											2010-07-22 11:12:47 +00:00
										 |  |  |     link->format  = -1; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:19 +00:00
										 |  |  | int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt, | 
					
						
							| 
									
										
										
										
											2010-09-27 21:57:16 +00:00
										 |  |  |                            unsigned filt_srcpad_idx, unsigned filt_dstpad_idx) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:19 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-09-27 17:28:53 +00:00
										 |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |     unsigned dstpad_idx = link->dstpad - link->dst->input_pads; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-13 00:16:52 +00:00
										 |  |  |     av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s' " | 
					
						
							|  |  |  |            "between the filter '%s' and the filter '%s'\n", | 
					
						
							|  |  |  |            filt->name, link->src->name, link->dst->name); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |     link->dst->inputs[dstpad_idx] = NULL; | 
					
						
							| 
									
										
										
										
											2010-09-27 21:57:16 +00:00
										 |  |  |     if ((ret = avfilter_link(filt, filt_dstpad_idx, link->dst, dstpad_idx)) < 0) { | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:19 +00:00
										 |  |  |         /* failed to link output filter to new filter */ | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |         link->dst->inputs[dstpad_idx] = link; | 
					
						
							| 
									
										
										
										
											2010-09-27 17:28:53 +00:00
										 |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:19 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* re-hookup the link to the new destination filter we inserted */ | 
					
						
							|  |  |  |     link->dst = filt; | 
					
						
							| 
									
										
										
										
											2010-09-27 21:57:16 +00:00
										 |  |  |     link->dstpad = &filt->input_pads[filt_srcpad_idx]; | 
					
						
							|  |  |  |     filt->inputs[filt_srcpad_idx] = link; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 11:12:47 +00:00
										 |  |  |     /* if any information on supported media formats already exists on the
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:28 +00:00
										 |  |  |      * link, we need to preserve that */ | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     if (link->out_formats) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:32 +00:00
										 |  |  |         avfilter_formats_changeref(&link->out_formats, | 
					
						
							| 
									
										
										
										
											2010-09-27 21:57:16 +00:00
										 |  |  |                                    &filt->outputs[filt_dstpad_idx]->out_formats); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:19 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:41 +00:00
										 |  |  | int avfilter_config_links(AVFilterContext *filter) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:18 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int (*config_link)(AVFilterLink *); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:41 +00:00
										 |  |  |     unsigned i; | 
					
						
							| 
									
										
										
										
											2010-10-10 18:54:39 +00:00
										 |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     for (i = 0; i < filter->input_count; i ++) { | 
					
						
							| 
									
										
										
										
											2008-02-15 21:40:46 +00:00
										 |  |  |         AVFilterLink *link = filter->inputs[i]; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:38:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |         if (!link) continue; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |         switch (link->init_state) { | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:41 +00:00
										 |  |  |         case AVLINK_INIT: | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         case AVLINK_STARTINIT: | 
					
						
							| 
									
										
										
										
											2008-02-15 21:41:11 +00:00
										 |  |  |             av_log(filter, AV_LOG_INFO, "circular filter chain detected\n"); | 
					
						
							|  |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:41 +00:00
										 |  |  |         case AVLINK_UNINIT: | 
					
						
							|  |  |  |             link->init_state = AVLINK_STARTINIT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-10 18:54:39 +00:00
										 |  |  |             if ((ret = avfilter_config_links(link->src)) < 0) | 
					
						
							|  |  |  |                 return ret; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |             if (!(config_link = link->srcpad->config_props)) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:47 +00:00
										 |  |  |                 config_link  = avfilter_default_config_output_link; | 
					
						
							| 
									
										
										
										
											2010-10-10 18:54:39 +00:00
										 |  |  |             if ((ret = config_link(link)) < 0) | 
					
						
							|  |  |  |                 return ret; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:35:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-10 22:26:14 +00:00
										 |  |  |             if (link->time_base.num == 0 && link->time_base.den == 0) | 
					
						
							| 
									
										
										
										
											2010-10-12 22:32:31 +00:00
										 |  |  |                 link->time_base = link->src && link->src->input_count ? | 
					
						
							|  |  |  |                     link->src->inputs[0]->time_base : AV_TIME_BASE_Q; | 
					
						
							| 
									
										
										
										
											2010-10-10 22:26:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-02 19:39:56 +00:00
										 |  |  |             if (link->sample_aspect_ratio.num == 0 && link->sample_aspect_ratio.den == 0) | 
					
						
							|  |  |  |                 link->sample_aspect_ratio = link->src->input_count ? | 
					
						
							|  |  |  |                     link->src->inputs[0]->sample_aspect_ratio : (AVRational){1,1}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:59:55 +01:00
										 |  |  |             if (link->sample_rate == 0 && link->src && link->src->input_count) | 
					
						
							|  |  |  |                 link->sample_rate = link->src->inputs[0]->sample_rate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (link->channel_layout == 0 && link->src && link->src->input_count) | 
					
						
							|  |  |  |                 link->channel_layout = link->src->inputs[0]->channel_layout; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |             if ((config_link = link->dstpad->config_props)) | 
					
						
							| 
									
										
										
										
											2010-10-10 18:54:39 +00:00
										 |  |  |                 if ((ret = config_link(link)) < 0) | 
					
						
							|  |  |  |                     return ret; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:35:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:41 +00:00
										 |  |  |             link->init_state = AVLINK_INIT; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 00:29:34 +00:00
										 |  |  | static char *ff_get_ref_perms_string(char *buf, size_t buf_size, int perms) | 
					
						
							| 
									
										
										
										
											2010-08-24 15:12:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-27 15:10:21 +00:00
										 |  |  |     snprintf(buf, buf_size, "%s%s%s%s%s%s", | 
					
						
							| 
									
										
										
										
											2010-08-24 15:12:13 +00:00
										 |  |  |              perms & AV_PERM_READ      ? "r" : "", | 
					
						
							|  |  |  |              perms & AV_PERM_WRITE     ? "w" : "", | 
					
						
							|  |  |  |              perms & AV_PERM_PRESERVE  ? "p" : "", | 
					
						
							| 
									
										
										
										
											2010-11-13 09:20:32 +00:00
										 |  |  |              perms & AV_PERM_REUSE     ? "u" : "", | 
					
						
							| 
									
										
										
										
											2010-12-27 15:10:21 +00:00
										 |  |  |              perms & AV_PERM_REUSE2    ? "U" : "", | 
					
						
							|  |  |  |              perms & AV_PERM_NEG_LINESIZES ? "n" : ""); | 
					
						
							| 
									
										
										
										
											2010-08-24 15:12:13 +00:00
										 |  |  |     return buf; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  | static void ff_dlog_ref(void *ctx, AVFilterBufferRef *ref, int end) | 
					
						
							| 
									
										
										
										
											2009-10-06 22:07:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-24 15:12:13 +00:00
										 |  |  |     av_unused char buf[16]; | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |     av_dlog(ctx, | 
					
						
							| 
									
										
										
										
											2010-08-24 15:12:13 +00:00
										 |  |  |             "ref[%p buf:%p refcount:%d perms:%s data:%p linesize[%d, %d, %d, %d] pts:%"PRId64" pos:%"PRId64, | 
					
						
							|  |  |  |             ref, ref->buf, ref->buf->refcount, ff_get_ref_perms_string(buf, sizeof(buf), ref->perms), ref->data[0], | 
					
						
							| 
									
										
										
										
											2010-08-20 15:15:57 +00:00
										 |  |  |             ref->linesize[0], ref->linesize[1], ref->linesize[2], ref->linesize[3], | 
					
						
							|  |  |  |             ref->pts, ref->pos); | 
					
						
							| 
									
										
										
										
											2010-08-20 14:41:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-20 15:15:57 +00:00
										 |  |  |     if (ref->video) { | 
					
						
							| 
									
										
										
										
											2011-04-23 19:55:59 +02:00
										 |  |  |         av_dlog(ctx, " a:%d/%d s:%dx%d i:%c iskey:%d type:%c", | 
					
						
							| 
									
										
										
										
											2011-04-29 13:12:39 +02:00
										 |  |  |                 ref->video->sample_aspect_ratio.num, ref->video->sample_aspect_ratio.den, | 
					
						
							| 
									
										
										
										
											2010-08-20 15:15:57 +00:00
										 |  |  |                 ref->video->w, ref->video->h, | 
					
						
							|  |  |  |                 !ref->video->interlaced     ? 'P' :         /* Progressive  */ | 
					
						
							| 
									
										
										
										
											2011-04-23 19:55:59 +02:00
										 |  |  |                 ref->video->top_field_first ? 'T' : 'B',    /* Top / Bottom */ | 
					
						
							|  |  |  |                 ref->video->key_frame, | 
					
						
							|  |  |  |                 av_get_picture_type_char(ref->video->pict_type)); | 
					
						
							| 
									
										
										
										
											2010-08-20 14:41:21 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-08-20 15:16:10 +00:00
										 |  |  |     if (ref->audio) { | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |         av_dlog(ctx, " cl:%"PRId64"d sn:%d s:%d sr:%d p:%d", | 
					
						
							| 
									
										
										
										
											2010-08-20 15:16:10 +00:00
										 |  |  |                 ref->audio->channel_layout, | 
					
						
							| 
									
										
										
										
											2011-01-15 17:31:34 +00:00
										 |  |  |                 ref->audio->nb_samples, | 
					
						
							| 
									
										
										
										
											2010-08-20 15:16:10 +00:00
										 |  |  |                 ref->audio->size, | 
					
						
							|  |  |  |                 ref->audio->sample_rate, | 
					
						
							|  |  |  |                 ref->audio->planar); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |     av_dlog(ctx, "]%s", end ? "\n" : ""); | 
					
						
							| 
									
										
										
										
											2009-10-06 22:07:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  | static void ff_dlog_link(void *ctx, AVFilterLink *link, int end) | 
					
						
							| 
									
										
										
										
											2009-10-06 22:07:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-15 19:58:29 +00:00
										 |  |  |     if (link->type == AVMEDIA_TYPE_VIDEO) { | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |         av_dlog(ctx, | 
					
						
							| 
									
										
										
										
											2011-01-15 20:02:03 +00:00
										 |  |  |                 "link[%p s:%dx%d fmt:%-16s %-16s->%-16s]%s", | 
					
						
							|  |  |  |                 link, link->w, link->h, | 
					
						
							|  |  |  |                 av_pix_fmt_descriptors[link->format].name, | 
					
						
							|  |  |  |                 link->src ? link->src->filter->name : "", | 
					
						
							|  |  |  |                 link->dst ? link->dst->filter->name : "", | 
					
						
							|  |  |  |                 end ? "\n" : ""); | 
					
						
							| 
									
										
										
										
											2011-01-15 19:58:29 +00:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         char buf[128]; | 
					
						
							|  |  |  |         av_get_channel_layout_string(buf, sizeof(buf), -1, link->channel_layout); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |         av_dlog(ctx, | 
					
						
							| 
									
										
										
										
											2011-01-15 19:58:29 +00:00
										 |  |  |                 "link[%p r:%"PRId64" cl:%s fmt:%-16s %-16s->%-16s]%s", | 
					
						
							|  |  |  |                 link, link->sample_rate, buf, | 
					
						
							|  |  |  |                 av_get_sample_fmt_name(link->format), | 
					
						
							|  |  |  |                 link->src ? link->src->filter->name : "", | 
					
						
							|  |  |  |                 link->dst ? link->dst->filter->name : "", | 
					
						
							|  |  |  |                 end ? "\n" : ""); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-10-06 22:07:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  | #define FF_DPRINTF_START(ctx, func) av_dlog(NULL, "%-16s: ", #func)
 | 
					
						
							| 
									
										
										
										
											2011-01-25 00:29:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:19 +00:00
										 |  |  | AVFilterBufferRef *avfilter_get_video_buffer(AVFilterLink *link, int perms, int w, int h) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:19 +00:00
										 |  |  |     AVFilterBufferRef *ret = NULL; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:12:13 +00:00
										 |  |  |     av_unused char buf[16]; | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |     FF_DPRINTF_START(NULL, get_video_buffer); ff_dlog_link(NULL, link, 0); | 
					
						
							|  |  |  |     av_dlog(NULL, " perms:%s w:%d h:%d\n", ff_get_ref_perms_string(buf, sizeof(buf), perms), w, h); | 
					
						
							| 
									
										
										
										
											2009-10-06 22:07:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |     if (link->dstpad->get_video_buffer) | 
					
						
							|  |  |  |         ret = link->dstpad->get_video_buffer(link, perms, w, h); | 
					
						
							| 
									
										
										
										
											2009-10-18 08:16:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     if (!ret) | 
					
						
							| 
									
										
										
										
											2009-10-18 08:16:18 +00:00
										 |  |  |         ret = avfilter_default_get_video_buffer(link, perms, w, h); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 15:38:50 +00:00
										 |  |  |     if (ret) | 
					
						
							|  |  |  |         ret->type = AVMEDIA_TYPE_VIDEO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |     FF_DPRINTF_START(NULL, get_video_buffer); ff_dlog_link(NULL, link, 0); av_dlog(NULL, " returning "); ff_dlog_ref(NULL, ret, 1); | 
					
						
							| 
									
										
										
										
											2009-10-06 22:07:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-25 20:50:28 +00:00
										 |  |  | AVFilterBufferRef * | 
					
						
							|  |  |  | avfilter_get_video_buffer_ref_from_arrays(uint8_t *data[4], int linesize[4], int perms, | 
					
						
							|  |  |  |                                           int w, int h, enum PixelFormat format) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AVFilterBuffer *pic = av_mallocz(sizeof(AVFilterBuffer)); | 
					
						
							|  |  |  |     AVFilterBufferRef *picref = av_mallocz(sizeof(AVFilterBufferRef)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!pic || !picref) | 
					
						
							|  |  |  |         goto fail; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     picref->buf = pic; | 
					
						
							|  |  |  |     picref->buf->free = ff_avfilter_default_free_buffer; | 
					
						
							|  |  |  |     if (!(picref->video = av_mallocz(sizeof(AVFilterBufferRefVideoProps)))) | 
					
						
							|  |  |  |         goto fail; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-11 23:53:17 +00:00
										 |  |  |     pic->w = picref->video->w = w; | 
					
						
							|  |  |  |     pic->h = picref->video->h = h; | 
					
						
							| 
									
										
										
										
											2010-11-25 20:50:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* make sure the buffer gets read permission or it's useless for output */ | 
					
						
							|  |  |  |     picref->perms = perms | AV_PERM_READ; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pic->refcount = 1; | 
					
						
							|  |  |  |     picref->type = AVMEDIA_TYPE_VIDEO; | 
					
						
							| 
									
										
										
										
											2011-01-11 23:53:17 +00:00
										 |  |  |     pic->format = picref->format = format; | 
					
						
							| 
									
										
										
										
											2010-11-25 20:50:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     memcpy(pic->data,        data,          sizeof(pic->data)); | 
					
						
							|  |  |  |     memcpy(pic->linesize,    linesize,      sizeof(pic->linesize)); | 
					
						
							|  |  |  |     memcpy(picref->data,     pic->data,     sizeof(picref->data)); | 
					
						
							|  |  |  |     memcpy(picref->linesize, pic->linesize, sizeof(picref->linesize)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return picref; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | fail: | 
					
						
							|  |  |  |     if (picref && picref->video) | 
					
						
							|  |  |  |         av_free(picref->video); | 
					
						
							|  |  |  |     av_free(picref); | 
					
						
							|  |  |  |     av_free(pic); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-17 18:08:03 +00:00
										 |  |  | AVFilterBufferRef *avfilter_get_audio_buffer(AVFilterLink *link, int perms, | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |                                              enum AVSampleFormat sample_fmt, int size, | 
					
						
							| 
									
										
										
										
											2010-08-17 18:08:03 +00:00
										 |  |  |                                              int64_t channel_layout, int planar) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AVFilterBufferRef *ret = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |     if (link->dstpad->get_audio_buffer) | 
					
						
							|  |  |  |         ret = link->dstpad->get_audio_buffer(link, perms, sample_fmt, size, channel_layout, planar); | 
					
						
							| 
									
										
										
										
											2010-08-17 18:08:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!ret) | 
					
						
							|  |  |  |         ret = avfilter_default_get_audio_buffer(link, perms, sample_fmt, size, channel_layout, planar); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ret) | 
					
						
							|  |  |  |         ret->type = AVMEDIA_TYPE_AUDIO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:31 +00:00
										 |  |  | int avfilter_request_frame(AVFilterLink *link) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |     FF_DPRINTF_START(NULL, request_frame); ff_dlog_link(NULL, link, 1); | 
					
						
							| 
									
										
										
										
											2009-10-06 22:07:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |     if (link->srcpad->request_frame) | 
					
						
							|  |  |  |         return link->srcpad->request_frame(link); | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     else if (link->src->inputs[0]) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:31 +00:00
										 |  |  |         return avfilter_request_frame(link->src->inputs[0]); | 
					
						
							|  |  |  |     else return -1; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:40:26 +00:00
										 |  |  | int avfilter_poll_frame(AVFilterLink *link) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     int i, min = INT_MAX; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:40:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |     if (link->srcpad->poll_frame) | 
					
						
							|  |  |  |         return link->srcpad->poll_frame(link); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:41:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     for (i = 0; i < link->src->input_count; i++) { | 
					
						
							| 
									
										
										
										
											2009-10-18 22:33:37 +00:00
										 |  |  |         int val; | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |         if (!link->src->inputs[i]) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:41:31 +00:00
										 |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2009-10-18 22:33:37 +00:00
										 |  |  |         val = avfilter_poll_frame(link->src->inputs[i]); | 
					
						
							|  |  |  |         min = FFMIN(min, val); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:41:31 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-15 21:40:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return min; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | /* XXX: should we do the duplicating of the picture ref here, instead of
 | 
					
						
							|  |  |  |  * forcing the source filter to do it? */ | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:19 +00:00
										 |  |  | void avfilter_start_frame(AVFilterLink *link, AVFilterBufferRef *picref) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:19 +00:00
										 |  |  |     void (*start_frame)(AVFilterLink *, AVFilterBufferRef *); | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |     AVFilterPad *dst = link->dstpad; | 
					
						
							| 
									
										
										
										
											2010-12-27 15:10:21 +00:00
										 |  |  |     int perms = picref->perms; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |     FF_DPRINTF_START(NULL, start_frame); ff_dlog_link(NULL, link, 0); av_dlog(NULL, " "); ff_dlog_ref(NULL, picref, 1); | 
					
						
							| 
									
										
										
										
											2009-10-06 22:07:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     if (!(start_frame = dst->start_frame)) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |         start_frame = avfilter_default_start_frame; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-27 15:10:21 +00:00
										 |  |  |     if (picref->linesize[0] < 0) | 
					
						
							|  |  |  |         perms |= AV_PERM_NEG_LINESIZES; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  |     /* prepare to copy the picture if it has insufficient permissions */ | 
					
						
							| 
									
										
										
										
											2010-12-27 15:10:21 +00:00
										 |  |  |     if ((dst->min_perms & perms) != dst->min_perms || dst->rej_perms & perms) { | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:36 +00:00
										 |  |  |         av_log(link->dst, AV_LOG_DEBUG, | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  |                 "frame copy needed (have perms %x, need %x, reject %x)\n", | 
					
						
							| 
									
										
										
										
											2008-02-15 21:38:10 +00:00
										 |  |  |                 picref->perms, | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |                 link->dstpad->min_perms, link->dstpad->rej_perms); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 08:37:54 +00:00
										 |  |  |         link->cur_buf = avfilter_get_video_buffer(link, dst->min_perms, link->w, link->h); | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:34 +00:00
										 |  |  |         link->src_buf = picref; | 
					
						
							|  |  |  |         avfilter_copy_buffer_ref_props(link->cur_buf, link->src_buf); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:34 +00:00
										 |  |  |         link->cur_buf = picref; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:34 +00:00
										 |  |  |     start_frame(link, link->cur_buf); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void avfilter_end_frame(AVFilterLink *link) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     void (*end_frame)(AVFilterLink *); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |     if (!(end_frame = link->dstpad->end_frame)) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:40:30 +00:00
										 |  |  |         end_frame = avfilter_default_end_frame; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     end_frame(link); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  |     /* unreference the source picture if we're feeding the destination filter
 | 
					
						
							|  |  |  |      * a copied version dues to permission issues */ | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     if (link->src_buf) { | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:34 +00:00
										 |  |  |         avfilter_unref_buffer(link->src_buf); | 
					
						
							|  |  |  |         link->src_buf = NULL; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-04 23:26:13 +00:00
										 |  |  | void avfilter_draw_slice(AVFilterLink *link, int y, int h, int slice_dir) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  |     uint8_t *src[4], *dst[4]; | 
					
						
							| 
									
										
										
										
											2010-04-03 15:29:48 +00:00
										 |  |  |     int i, j, vsub; | 
					
						
							| 
									
										
										
										
											2009-12-04 23:26:13 +00:00
										 |  |  |     void (*draw_slice)(AVFilterLink *, int, int, int); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |     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); | 
					
						
							| 
									
										
										
										
											2009-10-06 22:07:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  |     /* copy the slice if needed for permission reasons */ | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     if (link->src_buf) { | 
					
						
							| 
									
										
										
										
											2010-01-31 16:33:29 +00:00
										 |  |  |         vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |         for (i = 0; i < 4; i++) { | 
					
						
							|  |  |  |             if (link->src_buf->data[i]) { | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:34 +00:00
										 |  |  |                 src[i] = link->src_buf-> data[i] + | 
					
						
							| 
									
										
										
										
											2010-12-19 19:08:30 +00:00
										 |  |  |                     (y >> (i==1 || i==2 ? vsub : 0)) * link->src_buf-> linesize[i]; | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:34 +00:00
										 |  |  |                 dst[i] = link->cur_buf->data[i] + | 
					
						
							| 
									
										
										
										
											2010-12-19 19:08:30 +00:00
										 |  |  |                     (y >> (i==1 || i==2 ? vsub : 0)) * link->cur_buf->linesize[i]; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  |             } else | 
					
						
							|  |  |  |                 src[i] = dst[i] = NULL; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-02-15 21:40:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |         for (i = 0; i < 4; i++) { | 
					
						
							| 
									
										
										
										
											2008-02-15 21:42:01 +00:00
										 |  |  |             int planew = | 
					
						
							| 
									
										
										
										
											2010-09-07 19:15:29 +00:00
										 |  |  |                 av_image_get_linesize(link->format, link->cur_buf->video->w, i); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:42:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |             if (!src[i]) continue; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-19 19:08:30 +00:00
										 |  |  |             for (j = 0; j < h >> (i==1 || i==2 ? vsub : 0); j++) { | 
					
						
							| 
									
										
										
										
											2008-02-15 21:42:01 +00:00
										 |  |  |                 memcpy(dst[i], src[i], planew); | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |                 src[i] += link->src_buf->linesize[i]; | 
					
						
							| 
									
										
										
										
											2010-08-07 01:15:34 +00:00
										 |  |  |                 dst[i] += link->cur_buf->linesize[i]; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:57 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |     if (!(draw_slice = link->dstpad->draw_slice)) | 
					
						
							| 
									
										
										
										
											2009-01-11 22:05:48 +00:00
										 |  |  |         draw_slice = avfilter_default_draw_slice; | 
					
						
							| 
									
										
										
										
											2009-12-04 23:26:13 +00:00
										 |  |  |     draw_slice(link, y, h, slice_dir); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-17 18:08:03 +00:00
										 |  |  | void avfilter_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     void (*filter_samples)(AVFilterLink *, AVFilterBufferRef *); | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |     AVFilterPad *dst = link->dstpad; | 
					
						
							| 
									
										
										
										
											2010-08-17 18:08:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-01 15:48:37 +00:00
										 |  |  |     FF_DPRINTF_START(NULL, filter_samples); ff_dlog_link(NULL, link, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-17 18:08:03 +00:00
										 |  |  |     if (!(filter_samples = dst->filter_samples)) | 
					
						
							|  |  |  |         filter_samples = avfilter_default_filter_samples; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* prepare to copy the samples if the buffer has insufficient permissions */ | 
					
						
							|  |  |  |     if ((dst->min_perms & samplesref->perms) != dst->min_perms || | 
					
						
							|  |  |  |         dst->rej_perms & samplesref->perms) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         av_log(link->dst, AV_LOG_DEBUG, | 
					
						
							|  |  |  |                "Copying audio data in avfilter (have perms %x, need %x, reject %x)\n", | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |                samplesref->perms, link->dstpad->min_perms, link->dstpad->rej_perms); | 
					
						
							| 
									
										
										
										
											2010-08-17 18:08:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         link->cur_buf = avfilter_default_get_audio_buffer(link, dst->min_perms, | 
					
						
							|  |  |  |                                                           samplesref->format, | 
					
						
							|  |  |  |                                                           samplesref->audio->size, | 
					
						
							|  |  |  |                                                           samplesref->audio->channel_layout, | 
					
						
							|  |  |  |                                                           samplesref->audio->planar); | 
					
						
							|  |  |  |         link->cur_buf->pts                = samplesref->pts; | 
					
						
							|  |  |  |         link->cur_buf->audio->sample_rate = samplesref->audio->sample_rate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Copy actual data into new samples buffer */ | 
					
						
							|  |  |  |         memcpy(link->cur_buf->data[0], samplesref->data[0], samplesref->audio->size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         avfilter_unref_buffer(samplesref); | 
					
						
							|  |  |  |     } else | 
					
						
							|  |  |  |         link->cur_buf = samplesref; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filter_samples(link, link->cur_buf); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-24 23:47:33 +00:00
										 |  |  | #define MAX_REGISTERED_AVFILTERS_NB 64
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static AVFilter *registered_avfilters[MAX_REGISTERED_AVFILTERS_NB + 1]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int next_registered_avfilter_idx = 0; | 
					
						
							| 
									
										
										
										
											2009-10-27 19:52:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:40:33 +00:00
										 |  |  | AVFilter *avfilter_get_by_name(const char *name) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-24 23:47:33 +00:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:38:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-24 23:47:33 +00:00
										 |  |  |     for (i = 0; registered_avfilters[i]; i++) | 
					
						
							|  |  |  |         if (!strcmp(registered_avfilters[i]->name, name)) | 
					
						
							|  |  |  |             return registered_avfilters[i]; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-24 23:47:33 +00:00
										 |  |  | int avfilter_register(AVFilter *filter) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-24 23:47:33 +00:00
										 |  |  |     if (next_registered_avfilter_idx == MAX_REGISTERED_AVFILTERS_NB) | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:38:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-24 23:47:33 +00:00
										 |  |  |     registered_avfilters[next_registered_avfilter_idx++] = filter; | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-24 23:58:48 +00:00
										 |  |  | AVFilter **av_filter_next(AVFilter **filter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return filter ? ++filter : ®istered_avfilters[0]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | void avfilter_uninit(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-24 23:47:33 +00:00
										 |  |  |     memset(registered_avfilters, 0, sizeof(registered_avfilters)); | 
					
						
							|  |  |  |     next_registered_avfilter_idx = 0; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int pad_count(const AVFilterPad *pads) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int count; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:40:33 +00:00
										 |  |  |     for(count = 0; pads->name; count ++) pads ++; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |     return count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *filter_name(void *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AVFilterContext *filter = p; | 
					
						
							|  |  |  |     return filter->filter->name; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-07 09:08:28 +00:00
										 |  |  | static const AVClass avfilter_class = { | 
					
						
							|  |  |  |     "AVFilter", | 
					
						
							| 
									
										
										
										
											2010-04-28 20:00:23 +00:00
										 |  |  |     filter_name, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     LIBAVUTIL_VERSION_INT, | 
					
						
							| 
									
										
										
										
											2008-03-07 09:08:28 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 11:44:51 +00:00
										 |  |  | int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:12 +00:00
										 |  |  |     AVFilterContext *ret; | 
					
						
							| 
									
										
										
										
											2010-08-11 11:44:51 +00:00
										 |  |  |     *filter_ctx = NULL; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!filter) | 
					
						
							| 
									
										
										
										
											2010-08-11 11:44:51 +00:00
										 |  |  |         return AVERROR(EINVAL); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:39:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-12 20:30:57 +00:00
										 |  |  |     ret = av_mallocz(sizeof(AVFilterContext)); | 
					
						
							| 
									
										
										
										
											2011-05-03 21:25:40 -04:00
										 |  |  |     if (!ret) | 
					
						
							|  |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-07 09:08:28 +00:00
										 |  |  |     ret->av_class = &avfilter_class; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |     ret->filter   = filter; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:36:40 +00:00
										 |  |  |     ret->name     = inst_name ? av_strdup(inst_name) : NULL; | 
					
						
							| 
									
										
										
										
											2011-05-03 21:25:40 -04:00
										 |  |  |     if (filter->priv_size) { | 
					
						
							| 
									
										
										
										
											2011-04-27 08:29:09 -07:00
										 |  |  |         ret->priv     = av_mallocz(filter->priv_size); | 
					
						
							| 
									
										
										
										
											2011-05-03 21:25:40 -04:00
										 |  |  |         if (!ret->priv) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:36:57 +00:00
										 |  |  |     ret->input_count  = pad_count(filter->inputs); | 
					
						
							| 
									
										
										
										
											2009-01-12 20:30:57 +00:00
										 |  |  |     if (ret->input_count) { | 
					
						
							| 
									
										
										
										
											2009-01-12 20:34:34 +00:00
										 |  |  |         ret->input_pads   = av_malloc(sizeof(AVFilterPad) * ret->input_count); | 
					
						
							| 
									
										
										
										
											2011-05-03 21:25:40 -04:00
										 |  |  |         if (!ret->input_pads) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2009-01-12 20:34:34 +00:00
										 |  |  |         memcpy(ret->input_pads, filter->inputs, sizeof(AVFilterPad) * ret->input_count); | 
					
						
							|  |  |  |         ret->inputs       = av_mallocz(sizeof(AVFilterLink*) * ret->input_count); | 
					
						
							| 
									
										
										
										
											2011-05-03 21:25:40 -04:00
										 |  |  |         if (!ret->inputs) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2009-01-12 20:30:57 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-15 21:37:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:36:57 +00:00
										 |  |  |     ret->output_count = pad_count(filter->outputs); | 
					
						
							| 
									
										
										
										
											2009-01-12 20:30:57 +00:00
										 |  |  |     if (ret->output_count) { | 
					
						
							| 
									
										
										
										
											2009-01-12 20:34:34 +00:00
										 |  |  |         ret->output_pads  = av_malloc(sizeof(AVFilterPad) * ret->output_count); | 
					
						
							| 
									
										
										
										
											2011-05-03 21:25:40 -04:00
										 |  |  |         if (!ret->output_pads) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2009-01-12 20:34:34 +00:00
										 |  |  |         memcpy(ret->output_pads, filter->outputs, sizeof(AVFilterPad) * ret->output_count); | 
					
						
							|  |  |  |         ret->outputs      = av_mallocz(sizeof(AVFilterLink*) * ret->output_count); | 
					
						
							| 
									
										
										
										
											2011-05-03 21:25:40 -04:00
										 |  |  |         if (!ret->outputs) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2009-01-12 20:30:57 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-15 21:36:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 11:44:51 +00:00
										 |  |  |     *filter_ctx = ret; | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2011-05-03 21:25:40 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     av_freep(&ret->inputs); | 
					
						
							|  |  |  |     av_freep(&ret->input_pads); | 
					
						
							|  |  |  |     ret->input_count = 0; | 
					
						
							|  |  |  |     av_freep(&ret->outputs); | 
					
						
							|  |  |  |     av_freep(&ret->output_pads); | 
					
						
							|  |  |  |     ret->output_count = 0; | 
					
						
							|  |  |  |     av_freep(&ret->priv); | 
					
						
							|  |  |  |     av_free(ret); | 
					
						
							|  |  |  |     return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-08 12:32:39 +00:00
										 |  |  | void avfilter_free(AVFilterContext *filter) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2010-09-27 01:17:46 +00:00
										 |  |  |     AVFilterLink *link; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     if (filter->filter->uninit) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |         filter->filter->uninit(filter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     for (i = 0; i < filter->input_count; i++) { | 
					
						
							| 
									
										
										
										
											2010-09-27 01:17:46 +00:00
										 |  |  |         if ((link = filter->inputs[i])) { | 
					
						
							|  |  |  |             if (link->src) | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |                 link->src->outputs[link->srcpad - link->src->output_pads] = NULL; | 
					
						
							| 
									
										
										
										
											2010-09-27 01:17:46 +00:00
										 |  |  |             avfilter_formats_unref(&link->in_formats); | 
					
						
							|  |  |  |             avfilter_formats_unref(&link->out_formats); | 
					
						
							| 
									
										
										
										
											2010-08-06 22:25:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-09-27 01:17:46 +00:00
										 |  |  |         av_freep(&link); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     for (i = 0; i < filter->output_count; i++) { | 
					
						
							| 
									
										
										
										
											2010-09-27 01:17:46 +00:00
										 |  |  |         if ((link = filter->outputs[i])) { | 
					
						
							|  |  |  |             if (link->dst) | 
					
						
							| 
									
										
										
										
											2010-09-27 16:58:48 +00:00
										 |  |  |                 link->dst->inputs[link->dstpad - link->dst->input_pads] = NULL; | 
					
						
							| 
									
										
										
										
											2010-09-27 01:17:46 +00:00
										 |  |  |             avfilter_formats_unref(&link->in_formats); | 
					
						
							|  |  |  |             avfilter_formats_unref(&link->out_formats); | 
					
						
							| 
									
										
										
										
											2010-08-06 22:25:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-09-27 01:17:46 +00:00
										 |  |  |         av_freep(&link); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:38:29 +00:00
										 |  |  |     av_freep(&filter->name); | 
					
						
							|  |  |  |     av_freep(&filter->input_pads); | 
					
						
							|  |  |  |     av_freep(&filter->output_pads); | 
					
						
							|  |  |  |     av_freep(&filter->inputs); | 
					
						
							|  |  |  |     av_freep(&filter->outputs); | 
					
						
							|  |  |  |     av_freep(&filter->priv); | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  |     av_free(filter); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 21:36:50 +00:00
										 |  |  | int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-15 21:40:46 +00:00
										 |  |  |     int ret=0; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 14:32:31 +00:00
										 |  |  |     if (filter->filter->init) | 
					
						
							| 
									
										
										
										
											2008-02-15 21:40:46 +00:00
										 |  |  |         ret = filter->filter->init(filter, args, opaque); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2008-02-15 21:33:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 |