minimum encoding buffer size Used to avoid some checks during header writing.
Definition at line 624 of file avcodec.h.
Referenced by avcodec_encode_video(), encode_frame(), encode_nals(), encode_picture_ls(), flashsv2_encode_frame(), gif_encode_frame(), ljpeg_encode_frame(), prores_encode_frame(), svq1_encode_frame(), and xvid_encode_frame().
motion estimation type.
no search, that is use 0,0 vector whenever one is needed
enhanced predictive zonal search
reserved for experiments
hexagon based search
uneven multi-hexagon search
transformed exhaustive search algorithm
iterative search
Find a registered encoder with a matching codec ID.
Definition at line 2807 of file utils.c.
Referenced by add_stream(), audio_encode_example(), avcodec_get_name(), avcodec_get_type(), avcodec_open2(), avcodec_string(), choose_encoder(), compute_status(), config(), config_props(), estimate_best_b_count(), ffserver_opt_preset(), filter_codec_opts(), find_codec_or_die(), open_output_file(), read_ffserver_streams(), show_codecs(), transcode_init(), and video_encode_example().
Find a registered encoder with the specified name.
Definition at line 2812 of file utils.c.
Referenced by find_codec_or_die(), opt_codec(), and show_help_codec().
Encode an audio frame from samples into buf.
Encode a frame of audio.
Takes input samples from frame and writes the next output packet, if available, to avpkt. The output packet does not necessarily contain data for the most recent frame, as encoders can delay, split, and combine input frames internally as needed.
If this function fails or produces no output, avpkt will be freed using av_free_packet() (i.e. avpkt->destruct will be called to free the user supplied buffer).
Definition at line 1751 of file utils.c.
Referenced by audio_encode_example(), avcodec_encode_audio(), do_audio_out(), encode_audio_frame(), encode_write_frame(), flush_encoders(), wrap(), and write_audio_frame().
Encode a video frame from pict into buf. The input picture should be stored using a specific format, namely avctx.pix_fmt.
Encode a frame of video.
Takes input raw video data from frame and writes the next output packet, if available, to avpkt. The output packet does not necessarily contain data for the most recent frame, as encoders can delay and reorder input frames internally as needed.
If this function fails or produces no output, avpkt will be freed using av_free_packet() (i.e. avpkt->destruct will be called to free the user supplied buffer).
Definition at line 2004 of file utils.c.
Referenced by avcodec_encode_video(), do_video_out(), encode_frame(), encode_write_frame(), filter_frame(), flush_encoders(), video_encode_example(), worker(), wrap(), and write_video_frame().
Definition at line 2085 of file utils.c.
Referenced by do_subtitle_out(), and wrap().