FFmpeg libavfilter使用示例-处理YUV格式数据

目录

  1. 参考
  2. 示例说明
  3. 示例代码

1. 参考

2. 示例说明

FFmpeg中的libavfilter提供了一个通用的音视频filter框架。使用avfilter可以对音视频数据做一些效果处理如去色调、模糊、水平翻转、裁剪、加方框、叠加文字等功能。

本示例为对YUV视频数据做一些特效处理。输入为一个YUV文件,输出也是一个YUV文件。

程序的流程图如下所示。


FFmpeg_filter_yuv.png

AVFilter的初始化比较复杂,需要调用avfilter_graph_config()等一系列函数。数据处理时候的调用比较简单,只有两个函数:av_buffersrc_add_frame()和av_buffersink_get_frame()。

流程中的关键函数如下所示:

  • avfilter_graph_alloc():为AVFilterGraph分配内存。
  • avfilter_graph_create_filter():创建并向AVFilterGraph中添加一个AVFilterContext。
  • avfilter_graph_parse_ptr():将一串通过字符串描述的Graph添加到AVFilterGraph中。
  • avfilter_graph_config():检查AVFilterGraph的配置有效性,并配置其中的所有连接和格式。
  • av_buffersrc_add_frame():添加一个AVFrame到source filter。
  • av_buffersink_get_frame():从sink filter中获取一个AVFrame。

3. 示例代码

#include <stdio.h>
#include <libavfilter/avfilter.h>
#include <libavfilter/buffersink.h>
#include <libavfilter/buffersrc.h>
#include <libavutil/avutil.h>
#include <libavutil/imgutils.h>

char *progname = "";

void usage() {
    fprintf(stdout, "usage: %s <input> <width> <height> <filter_descr> <output>\n", progname);
    exit(1);
}

int main(int argc, char* argv[])
{
    progname = argv[0];
    if (argc < 6)
        usage();

    const char *in_filename = argv[1];
    const char *out_filename = argv[5];
    int in_width = atoi(argv[2]);
    int in_height = atoi(argv[3]);
    const char *filter_descr = argv[4];
    //const char *filter_descr = "lutyuv='u=128:v=128'";
    if (in_width <= 0 || in_height <= 0) {
        fprintf(stderr, "invalid parameters.\n");
        usage();
    } 

    int ret;
    AVFrame *frame_in;
    AVFrame *frame_out;
    unsigned char *frame_buffer_in;
    unsigned char *frame_buffer_out;

    AVFilterContext *buffersink_ctx;
    AVFilterContext *buffersrc_ctx;
    AVFilterGraph *filter_graph;
    static int video_stream_index = -1;

    FILE *in_fp = fopen(in_filename, "rb+");
    if (!in_fp) {
        printf("Error open input file.\n");
        return -1;
    }

    FILE *out_fp = fopen(out_filename, "wb+");
    if(!out_fp){
        printf("Error open output file.\n");
        return -1;
    }

    char args[512];
    const AVFilter *buffersrc  = avfilter_get_by_name("buffer");
    if (!buffersrc) {
        fprintf(stderr, "Can't find source fiter 'buffer'\n");
        return -1; 
    }
    const AVFilter *buffersink = avfilter_get_by_name("buffersink");
    if (!buffersink) {
        fprintf(stderr, "Can't find sink fiter 'buffersink'\n");
        return -1; 
    }
    AVFilterInOut *outputs = avfilter_inout_alloc();
    AVFilterInOut *inputs  = avfilter_inout_alloc();
    enum AVPixelFormat pix_fmts[] = { AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE };
    AVBufferSinkParams *buffersink_params;

    filter_graph = avfilter_graph_alloc();

    /* buffer video source: the decoded frames from the decoder will be inserted here. */
    snprintf(args, sizeof(args),
        "video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:pixel_aspect=%d/%d",
        in_width,in_height,AV_PIX_FMT_YUV420P,
        1, 25,1,1);

    ret = avfilter_graph_create_filter(&buffersrc_ctx, buffersrc, "in",
        args, NULL, filter_graph);
    if (ret < 0) {
        printf("Cannot create buffer source\n");
        return ret;
    }

    /* buffer video sink: to terminate the filter chain. */
    buffersink_params = av_buffersink_params_alloc();
    buffersink_params->pixel_fmts = pix_fmts;
    ret = avfilter_graph_create_filter(&buffersink_ctx, buffersink, "out",
        NULL, buffersink_params, filter_graph);
    av_free(buffersink_params);
    if (ret < 0) {
        fprintf(stderr, "Cannot create buffer sink, error:%s\n", av_err2str(ret));
        return ret;
    }

    /*
     * Set the endpoints for the filter graph. The filter_graph will
     * be linked to the graph described by filters_descr.
     */

    /*
     * The buffer source output must be connected to the input pad of
     * the first filter described by filters_descr; since the first
     * filter input label is not specified, it is set to "in" by
     * default.
     */
    outputs->name       = av_strdup("in");
    outputs->filter_ctx = buffersrc_ctx;
    outputs->pad_idx    = 0;
    outputs->next       = NULL;

    /*
     * The buffer sink input must be connected to the output pad of
     * the last filter described by filters_descr; since the last
     * filter output label is not specified, it is set to "out" by
     * default.
     */
    inputs->name       = av_strdup("out");
    inputs->filter_ctx = buffersink_ctx;
    inputs->pad_idx    = 0;
    inputs->next       = NULL;

    if ((ret = avfilter_graph_parse_ptr(filter_graph, filter_descr,
        &inputs, &outputs, NULL)) < 0) {
        fprintf(stderr, "avfilter_graph_parse_ptr failed, error:%s\n", av_err2str(ret));
        return ret;
    }

    if ((ret = avfilter_graph_config(filter_graph, NULL)) < 0) {
        fprintf(stderr, "avfilter_graph_config failed, error:%s\n", av_err2str(ret));
        return ret;
    }

    frame_in = av_frame_alloc();
    frame_buffer_in = (unsigned char *)av_malloc(av_image_get_buffer_size(AV_PIX_FMT_YUV420P, in_width,in_height,1));
    av_image_fill_arrays(frame_in->data, frame_in->linesize, frame_buffer_in,
        AV_PIX_FMT_YUV420P, in_width, in_height, 1);

    frame_out = av_frame_alloc();
    frame_buffer_out = (unsigned char *)av_malloc(av_image_get_buffer_size(AV_PIX_FMT_YUV420P, in_width,in_height,1));
    av_image_fill_arrays(frame_out->data, frame_out->linesize, frame_buffer_out,
        AV_PIX_FMT_YUV420P, in_width, in_height, 1);

    frame_in->width = in_width;
    frame_in->height = in_height;
    frame_in->format = AV_PIX_FMT_YUV420P;
    
    while (1) {
        if(fread(frame_buffer_in, 1, in_width*in_height*3/2, in_fp) != in_width * in_height * 3/2){
            break;
        }
        //input Y,U,V
        frame_in->data[0] = frame_buffer_in;
        frame_in->data[1] = frame_buffer_in + in_width * in_height;
        frame_in->data[2] = frame_buffer_in + in_width * in_height * 5/4;

        if (av_buffersrc_add_frame(buffersrc_ctx, frame_in) < 0) {
            printf( "Error while add frame.\n");
            break;
        }

        /* pull filtered pictures from the filtergraph */
        ret = av_buffersink_get_frame(buffersink_ctx, frame_out);
        if (ret < 0)
            break;

        //output Y,U,V
        if(frame_out->format == AV_PIX_FMT_YUV420P){
            for(int i = 0; i < frame_out->height; i++){
                fwrite(frame_out->data[0] + frame_out->linesize[0] * i, 1, frame_out->width, out_fp);
            }
            for(int i = 0; i < frame_out->height/2; i++){
                fwrite(frame_out->data[1] + frame_out->linesize[1] * i, 1, frame_out->width / 2, out_fp);
            }
            for(int i = 0; i < frame_out->height/2; i++){
                fwrite(frame_out->data[2] + frame_out->linesize[2] * i, 1, frame_out->width / 2, out_fp);
            }
        }
        fprintf(stdout, "Process 1 frame!\n");
        av_frame_unref(frame_out);
    }

    fclose(in_fp);
    fclose(out_fp);
    av_frame_free(&frame_in);
    av_frame_free(&frame_out);
    avfilter_graph_free(&filter_graph);
    return 0;
}

以上是基于[2]中给出的代码进行的修改,说明:

  1. 调用avfilter_get_by_name("ffbuffersink")时在新版本的ffmpeg要修改为avfilter_get_by_name("buffersink"),否则返回指针为空,调用avfilter_graph_create_filter返回-12,在以前的版本则没有这个问题。
  2. filter_descr传入"boxblur"时,返回"Invalid argument"的错误,并打印“No such filter: 'boxblur'”的错误信息。
  3. filter_descr参数通过传入不同的值实现不同的特效。
lutyuv='u=128:v=128'    //去色调
boxblur                 //模糊
hflip                   //水平翻转
crop=2/3*in_w:2/3*in_h  //裁剪
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,948评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,371评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,490评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,521评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,627评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,842评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,997评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,741评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,203评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,534评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,673评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,339评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,955评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,770评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,000评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,394评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,562评论 2 349