21 #define DEFAULT_INPUT_NAME     "transforms.trf" 
   23 #include <vid.stab/libvidstab.h> 
   45 #define OFFSET(x) offsetof(TransformContext, x) 
   46 #define OFFSETC(x) (offsetof(TransformContext, conf)+offsetof(VSTransformConfig, x)) 
   47 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM 
   50     {
"input",     
"set path to the file storing the transforms", 
OFFSET(input),
 
   52     {
"smoothing", 
"set number of frames*2 + 1 used for lowpass filtering", 
OFFSETC(smoothing),
 
   55     {
"optalgo",   
"set camera path optimization algo", 
OFFSETC(camPathAlgo),
 
   57     {  
"opt",     
"global optimization",                                            0, 
 
   59     {  
"gauss",   
"gaussian kernel",                                                0,
 
   61     {  
"avg",     
"simple averaging on motion",                                     0,
 
   64     {
"maxshift",  
"set maximal number of pixels to translate image", 
OFFSETC(maxShift),
 
   66     {
"maxangle",  
"set maximal angle in rad to rotate image", 
OFFSETC(maxAngle),
 
   69     {
"crop",      
"set cropping mode", 
OFFSETC(crop),
 
   71     {  
"keep",    
"keep border",                                                    0,
 
   73     {  
"black",   
"black border",                                                   0,
 
   76     {
"invert",    
"invert transforms", 
OFFSETC(invert),
 
   78     {
"relative",  
"consider transforms as relative", 
OFFSETC(relative),
 
   80     {
"zoom",      
"set percentage to zoom (>0: zoom in, <0: zoom out", 
OFFSETC(zoom),
 
   82     {
"optzoom",   
"set optimal zoom (0: nothing, 1: optimal static zoom, 2: optimal dynamic zoom)", 
OFFSETC(optZoom),
 
   84     {
"zoomspeed", 
"for adative zoom: percent to zoom maximally each frame",         
OFFSETC(zoomSpeed),
 
   87     {
"interpol",  
"set type of interpolation", 
OFFSETC(interpolType),
 
   89     {  
"no",      
"no interpolation",                                               0,
 
   91     {  
"linear",  
"linear (horizontal)",                                            0,
 
   93     {  
"bilinear",
"bi-linear",                                                      0,
 
   95     {  
"bicubic", 
"bi-cubic",                                                       0,
 
   98     {
"tripod",    
"enable virtual tripod mode (same as relative=0:smoothing=0)", 
OFFSET(tripod),
 
  100     {
"debug",     
"enable debug mode and writer global motions information to file", 
OFFSET(debug),
 
  111     tc->
class = &vidstabtransform_class;
 
  120     vsTransformDataCleanup(&tc->
td);
 
  121     vsTransformationsCleanup(&tc->
trans);
 
  150     VSTransformData *
td = &(tc->
td);
 
  155     if (!vsFrameInfoInit(&fi_src, inlink->
w, inlink->
h,
 
  157         !vsFrameInfoInit(&fi_dest, inlink->
w, inlink->
h,
 
  176     tc->
conf.modName = 
"vidstabtransform";
 
  180         tc->
conf.relative  = 0;
 
  181         tc->
conf.smoothing = 0;
 
  183     tc->
conf.simpleMotionCalculation = 0;
 
  185     tc->
conf.smoothZoom              = 0;
 
  187     if (vsTransformDataInit(td, &tc->
conf, &fi_src, &fi_dest) != VS_OK) {
 
  188         av_log(ctx, 
AV_LOG_ERROR, 
"initialization of vid.stab transform failed, please report a BUG\n");
 
  192     vsTransformGetConfig(&tc->
conf, td);
 
  193     av_log(ctx, 
AV_LOG_INFO, 
"Video transformation/stabilization settings (pass 2/2):\n");
 
  197            tc->
conf.camPathAlgo == VSOptimalL1 ? 
"opt" :
 
  198            (tc->
conf.camPathAlgo == VSGaussian ? 
"gauss" : 
"avg"));
 
  206            tc->
conf.optZoom == 1 ? 
"Static (1)" : (tc->
conf.optZoom == 2 ? 
"Dynamic (2)" : 
"Off (0)"));
 
  207     if (tc->
conf.optZoom == 2)
 
  211     f = fopen(tc->
input, 
"r");
 
  217         VSManyLocalMotions mlms;
 
  218         if (vsReadLocalMotionsFile(f, &mlms) == VS_OK) {
 
  220             if (vsLocalmotions2Transforms(td, &mlms, &tc->
trans) != VS_OK) {
 
  225             if (!vsReadOldTransforms(td, f, &tc->
trans)) { 
 
  233     if (vsPreprocessTransforms(td, &tc->
trans) != VS_OK) {
 
  247     VSTransformData* 
td = &(tc->
td);
 
  267     for (plane = 0; plane < vsTransformGetSrcFrameInfo(td)->planes; plane++) {
 
  272         vsTransformPrepare(td, &inframe, &inframe);
 
  275         for (plane = 0; plane < vsTransformGetDestFrameInfo(td)->planes; plane++) {
 
  279         vsTransformPrepare(td, &inframe, &outframe);
 
  282     vsDoTransform(td, vsGetNextTransform(td, &tc->
trans));
 
  284     vsTransformFinish(td);
 
  311     .
name          = 
"vidstabtransform",
 
  313                                           "pass 2 of 2 for stabilization " 
  314                                           "(see vidstabdetect for pass 1)."),
 
  319     .
inputs        = avfilter_vf_vidstabtransform_inputs,
 
  320     .
outputs       = avfilter_vf_vidstabtransform_outputs,
 
  321     .priv_class    = &vidstabtransform_class,
 
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
 
This structure describes decoded (raw) audio or video data. 
 
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples) 
 
static const AVFilterPad outputs[]
 
Main libavfilter public API header. 
 
packed RGB 8:8:8, 24bpp, RGBRGB... 
 
int av_get_bits_per_pixel(const AVPixFmtDescriptor *pixdesc)
Return the number of bits per pixel used by the pixel format described by pixdesc. 
 
int h
agreed upon image height 
 
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions. 
 
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width. 
 
const char * name
Pad name. 
 
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter. 
 
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples) 
 
#define AV_LOG_VERBOSE
Detailed information. 
 
A filter pad used for either input or output. 
 
A link between two filters. 
 
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered. 
 
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height. 
 
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g. 
 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
 
void * priv
private data for use by the filter 
 
packed RGBA 8:8:8:8, 32bpp, RGBARGBA... 
 
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples) 
 
int w
agreed upon image width 
 
packed RGB 8:8:8, 24bpp, BGRBGR... 
 
int format
agreed upon media format 
 
#define AV_LOG_INFO
Standard information. 
 
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable. 
 
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line. 
 
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
 
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
 
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples) 
 
Describe the class of an AVClass context structure. 
 
static const AVFilterPad inputs[]
 
const char * name
Filter name. 
 
AVFilterLink ** outputs
array of pointers to output links 
 
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes. 
 
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples) 
 
VSPixelFormat ff_av2vs_pixfmt(AVFilterContext *ctx, enum AVPixelFormat pf)
convert AV's pixelformat to vid.stab pixelformat 
 
common internal and external API header 
 
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) 
 
AVFilterContext * dst
dest filter 
 
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
 
void ff_vs_init(void)
sets the memory allocation function and logging constants to av versions 
 
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples) 
 
AVPixelFormat
Pixel format. 
 
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.