Go to the documentation of this file.
50 fprintf(stderr,
"Error sending a frame for encoding\n");
59 fprintf(stderr,
"Error during encoding\n");
69 int main(
int argc,
char **argv)
71 const char *filename, *codec_name;
78 uint8_t endcode[] = { 0, 0, 1, 0xb7 };
81 fprintf(stderr,
"Usage: %s <output file> <codec name>\n", argv[0]);
90 fprintf(stderr,
"Codec '%s' not found\n", codec_name);
96 fprintf(stderr,
"Could not allocate video codec context\n");
105 c->bit_rate = 400000;
129 fprintf(stderr,
"Could not open codec: %s\n",
av_err2str(
ret));
133 f = fopen(filename,
"wb");
135 fprintf(stderr,
"Could not open %s\n", filename);
141 fprintf(stderr,
"Could not allocate video frame\n");
144 frame->format =
c->pix_fmt;
146 frame->height =
c->height;
150 fprintf(stderr,
"Could not allocate the video frame data\n");
155 for (
i = 0;
i < 25;
i++) {
165 for (y = 0; y <
c->height; y++) {
166 for (x = 0; x <
c->width; x++) {
167 frame->data[0][y *
frame->linesize[0] + x] = x + y +
i * 3;
172 for (y = 0; y <
c->height/2; y++) {
173 for (x = 0; x <
c->width/2; x++) {
174 frame->data[1][y *
frame->linesize[1] + x] = 128 + y +
i * 2;
175 frame->data[2][y *
frame->linesize[2] + x] = 64 + x +
i * 5;
190 fwrite(endcode, 1,
sizeof(endcode),
f);
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
int avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt)
Read encoded data from the encoder.
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
int av_frame_get_buffer(AVFrame *frame, int align)
Allocate new buffer(s) for audio or video data.
#define AVERROR_EOF
End of file.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
This structure describes decoded (raw) audio or video data.
int av_frame_make_writable(AVFrame *frame)
Ensure that the frame data is writable, avoiding data copy if possible.
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
int main(int argc, char **argv)
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
void avcodec_free_context(AVCodecContext **avctx)
Free the codec context and everything associated with it and write NULL to the provided pointer.
Rational number (pair of numerator and denominator).
int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
printf("static const uint8_t my_array[100] = {\n")
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
AVCodec * avcodec_find_encoder_by_name(const char *name)
Find a registered encoder with the specified name.
static void encode(AVCodecContext *enc_ctx, AVFrame *frame, AVPacket *pkt, FILE *outfile)
#define i(width, name, range_min, range_max)
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
int avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame)
Supply a raw video or audio frame to the encoder.
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
main external API structure.
This structure stores compressed data.
@ AV_CODEC_ID_MPEG2VIDEO
preferred ID for MPEG-1/2 video decoding