You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
avfilter/avfilter: remove accidental loop index variable reset
Fixes ticket #11442. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@ -382,9 +382,9 @@ int ff_filter_config_links(AVFilterContext *filter)
|
|||||||
/* Copy side data before link->srcpad->config_props() is called, so the filter
|
/* Copy side data before link->srcpad->config_props() is called, so the filter
|
||||||
* may remove it for the next filter in the chain */
|
* may remove it for the next filter in the chain */
|
||||||
if (inlink && inlink->nb_side_data && !link->nb_side_data) {
|
if (inlink && inlink->nb_side_data && !link->nb_side_data) {
|
||||||
for (i = 0; i < inlink->nb_side_data; i++) {
|
for (int j = 0; j < inlink->nb_side_data; j++) {
|
||||||
ret = av_frame_side_data_clone(&link->side_data, &link->nb_side_data,
|
ret = av_frame_side_data_clone(&link->side_data, &link->nb_side_data,
|
||||||
inlink->side_data[i], 0);
|
inlink->side_data[j], 0);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
av_frame_side_data_free(&link->side_data, &link->nb_side_data);
|
av_frame_side_data_free(&link->side_data, &link->nb_side_data);
|
||||||
return ret;
|
return ret;
|
||||||
|
Reference in New Issue
Block a user