bsfc = next;
}
output_streams[i]->bitstream_filters = NULL;
- avcodec_free_frame(&output_streams[i]->filtered_frame);
+ av_frame_free(&output_streams[i]->filtered_frame);
av_parser_close(output_streams[i]->parser);
avresample_free(&is->avr);
av_freep(&is->audio_buf1);
is->audio_buf = NULL;
- avcodec_free_frame(&is->frame);
+ av_frame_free(&is->frame);
if (is->rdft) {
av_rdft_end(is->rdft);
fprintf(stderr, "Error while writing audio frame\n");
exit(1);
}
- avcodec_free_frame(&frame);
+ av_frame_free(&frame);
}
static void close_audio(AVFormatContext *oc, AVStream *st)
fclose(f);
av_freep(&samples);
- avcodec_free_frame(&frame);
+ av_frame_free(&frame);
avcodec_close(c);
av_free(c);
}
avcodec_close(c);
av_free(c);
- avcodec_free_frame(&decoded_frame);
+ av_frame_free(&decoded_frame);
}
/*
avcodec_close(c);
av_free(c);
av_freep(&picture->data[0]);
- avcodec_free_frame(&picture);
+ av_frame_free(&picture);
printf("\n");
}
avcodec_close(c);
av_free(c);
- avcodec_free_frame(&picture);
+ av_frame_free(&picture);
printf("\n");
}
}
fail:
- avcodec_free_frame(&frame);
+ av_frame_free(&frame);
return ret;
}