[FFmpeg-cvslog] doc/filters: note order of inputs for libvmaf
ffmpeg | branch: master | Gyan Doshi | Wed May 19 15:08:00 2021 +0530| [2261cc6d8ae57de498d0efb6af61ccf4b101790d] | committer: Gyan Doshi doc/filters: note order of inputs for libvmaf > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2261cc6d8ae57de498d0efb6af61ccf4b101790d --- doc/filters.texi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/filters.texi b/doc/filters.texi index 1a8843fe4f..a8797e5dc3 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -14008,6 +14008,8 @@ ffmpeg -i input.mov -vf lensfun=make=Canon:model="Canon EOS 100D":lens_model="Ca Obtain the VMAF (Video Multi-Method Assessment Fusion) score between two input videos. +The first input is the encoded video, and the second input is the reference video. + The obtained VMAF score is printed through the logging system. It requires Netflix's vmaf library (libvmaf) as a pre-requisite. ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".
[FFmpeg-cvslog] avfilter/avfiltergraph: Remove NULL checks after dereferences
ffmpeg | branch: master | Michael Niedermayer | Tue May 18 22:03:11 2021 +0200| [1642d8188d6e475b12ef41ec9b5775e5abadeb0d] | committer: Michael Niedermayer avfilter/avfiltergraph: Remove NULL checks after dereferences Fixes: CID1398579 Dereference before null check Reviewed-by: Nicolas George Signed-off-by: Michael Niedermayer > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1642d8188d6e475b12ef41ec9b5775e5abadeb0d --- libavfilter/avfiltergraph.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index ed54d3dc11..5389d82d9f 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -1360,8 +1360,8 @@ int avfilter_graph_request_oldest(AVFilterGraph *graph) if (r != AVERROR_EOF) break; av_log(oldest->dst, AV_LOG_DEBUG, "EOF on sink link %s:%s.\n", - oldest->dst ? oldest->dst->name : "unknown", - oldest->dstpad ? oldest->dstpad->name : "unknown"); + oldest->dst->name, + oldest->dstpad->name); /* EOF: remove the link from the heap */ if (oldest->age_index < --graph->sink_links_count) heap_bubble_down(graph, graph->sink_links[graph->sink_links_count], ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".
[FFmpeg-cvslog] libavformat/hlsenc: fix typos in comments
ffmpeg | branch: master | Valerii Zapodovnikov | Wed May 19 18:33:40 2021 +0300| [ab658db4d06fa5a3ef5b218e0b86970738e33016] | committer: Gyan Doshi libavformat/hlsenc: fix typos in comments > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ab658db4d06fa5a3ef5b218e0b86970738e33016 --- libavformat/hlsenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 5db7a744b4..151ef6ec8f 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -178,7 +178,7 @@ typedef struct VariantStream { unsigned int nb_streams; int m3u8_created; /* status of media play-list creation */ int is_default; /* default status of audio group */ -const char *language; /* audio lauguage name */ +const char *language; /* audio language name */ const char *agroup; /* audio group name */ const char *sgroup; /* subtitle group name */ const char *ccgroup; /* closed caption group name */ @@ -188,7 +188,7 @@ typedef struct VariantStream { typedef struct ClosedCaptionsStream { const char *ccgroup;/* closed caption group name */ const char *instreamid; /* closed captions INSTREAM-ID */ -const char *language; /* closed captions langauge */ +const char *language; /* closed captions language */ } ClosedCaptionsStream; typedef struct HLSContext { ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".