Lines Matching defs:output
503 AVFrame *output = NULL;
512 output = av_frame_alloc();
513 if (!output)
516 output->format = output_format;
518 err = av_hwframe_transfer_data(output, input, 0);
521 "output frame: %d.\n", err);
525 err = av_frame_copy_props(output, input);
527 av_frame_unref(output);
532 av_frame_move_ref(input, output);
533 av_frame_free(&output);
538 av_frame_free(&output);