MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / write_output_file_trailer

Function write_output_file_trailer

doc/examples/transcode_aac.c:767–776  ·  view source on GitHub ↗

* Write the trailer of the output file container. * @param output_format_context Format context of the output file * @return Error code (0 if successful) */

Source from the content-addressed store, hash-verified

765 * @return Error code (0 if successful)
766 */
767static int write_output_file_trailer(AVFormatContext *output_format_context)
768{
769 int error;
770 if ((error = av_write_trailer(output_format_context)) < 0) {
771 fprintf(stderr, "Could not write output file trailer (error '%s')\n",
772 av_err2str(error));
773 return error;
774 }
775 return 0;
776}
777
778int main(int argc, char **argv)
779{

Callers 1

mainFunction · 0.85

Calls 1

av_write_trailerFunction · 0.85

Tested by

no test coverage detected