mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 04:26:37 +08:00 
			
		
		
		
	 88beb2df98
			
		
	
	88beb2df98
	
	
	
		
			
			* qatar/master: FATE: fix the asyncts test build: Drop gcc-specific warning flag from header compilation rule FATE: add a test for the asyncts audio filter. matroskadec: return more correct error code on read error. buffersrc: check ff_get_audio_buffer() for errors. lavfi: check all ff_get_video_buffer() calls for errors. lavfi: check all avfilter_ref_buffer() calls for errors. vf_select: avoid an unnecessary avfilter_ref_buffer(). buffersrc: avoid creating unnecessary buffer reference lavfi: use avfilter_unref_bufferp() where appropriate. vf_fps: add more error checks. vf_fps: fix a memleak on malloc failure. lavfi: check all ff_start_frame/draw_slice/end_frame calls for errors lavfi: add error handling to end_frame(). lavfi: add error handling to draw_slice(). lavfi: add error handling to start_frame(). Conflicts: Makefile ffplay.c libavfilter/buffersrc.c libavfilter/vf_boxblur.c libavfilter/vf_drawtext.c libavfilter/vf_fade.c libavfilter/vf_frei0r.c libavfilter/vf_hflip.c libavfilter/vf_overlay.c libavfilter/vf_pad.c libavfilter/vf_scale.c libavfilter/video.c libavfilter/vsrc_color.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
		
			
				
	
	
		
			106 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2012 Stefano Sabatini
 | |
|  *
 | |
|  * 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
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * @file
 | |
|  * set field order
 | |
|  */
 | |
| 
 | |
| #include "avfilter.h"
 | |
| #include "video.h"
 | |
| 
 | |
| enum SetFieldMode {
 | |
|     MODE_AUTO = -1,
 | |
|     MODE_BFF,
 | |
|     MODE_TFF,
 | |
|     MODE_PROG,
 | |
| };
 | |
| 
 | |
| typedef struct {
 | |
|     enum SetFieldMode mode;
 | |
| } SetFieldContext;
 | |
| 
 | |
| static av_cold int init(AVFilterContext *ctx, const char *args)
 | |
| {
 | |
|     SetFieldContext *setfield = ctx->priv;
 | |
| 
 | |
|     setfield->mode = MODE_AUTO;
 | |
| 
 | |
|     if (args) {
 | |
|         char c;
 | |
|         if (sscanf(args, "%d%c", &setfield->mode, &c) != 1) {
 | |
|             if      (!strcmp("tff",  args)) setfield->mode = MODE_TFF;
 | |
|             else if (!strcmp("bff",  args)) setfield->mode = MODE_BFF;
 | |
|             else if (!strcmp("prog", args)) setfield->mode = MODE_PROG;
 | |
|             else if (!strcmp("auto", args)) setfield->mode = MODE_AUTO;
 | |
|             else {
 | |
|                 av_log(ctx, AV_LOG_ERROR, "Invalid argument '%s'\n", args);
 | |
|                 return AVERROR(EINVAL);
 | |
|             }
 | |
|         } else {
 | |
|             if (setfield->mode < -1 || setfield->mode > 1) {
 | |
|                 av_log(ctx, AV_LOG_ERROR,
 | |
|                        "Provided integer value %d must be included between -1 and +1\n",
 | |
|                        setfield->mode);
 | |
|                 return AVERROR(EINVAL);
 | |
|             }
 | |
|             av_log(ctx, AV_LOG_WARNING,
 | |
|                    "Using -1/0/1 is deprecated, use auto/tff/bff/prog\n");
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| static int start_frame(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
 | |
| {
 | |
|     SetFieldContext *setfield = inlink->dst->priv;
 | |
|     AVFilterBufferRef *outpicref = avfilter_ref_buffer(inpicref, ~0);
 | |
| 
 | |
|     if (setfield->mode == MODE_PROG) {
 | |
|         outpicref->video->interlaced = 0;
 | |
|     } else if (setfield->mode != MODE_AUTO) {
 | |
|         outpicref->video->interlaced = 1;
 | |
|         outpicref->video->top_field_first = setfield->mode;
 | |
|     }
 | |
|     return ff_start_frame(inlink->dst->outputs[0], outpicref);
 | |
| }
 | |
| 
 | |
| AVFilter avfilter_vf_setfield = {
 | |
|     .name      = "setfield",
 | |
|     .description = NULL_IF_CONFIG_SMALL("Force field for the output video frame."),
 | |
|     .init      = init,
 | |
| 
 | |
|     .priv_size = sizeof(SetFieldContext),
 | |
| 
 | |
|     .inputs = (const AVFilterPad[]) {
 | |
|         { .name             = "default",
 | |
|           .type             = AVMEDIA_TYPE_VIDEO,
 | |
|           .get_video_buffer = ff_null_get_video_buffer,
 | |
|           .start_frame      = start_frame, },
 | |
|         { .name = NULL }
 | |
|     },
 | |
|     .outputs = (const AVFilterPad[]) {
 | |
|         { .name             = "default",
 | |
|           .type             = AVMEDIA_TYPE_VIDEO, },
 | |
|         { .name = NULL }
 | |
|     },
 | |
| };
 |