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");
150 fprintf(stderr,
"Could not allocate the video frame data\n");
155 for (
i = 0;
i < 25;
i++) {
178 for (y = 0; y <
c->height; y++) {
179 for (x = 0; x <
c->width; x++) {
185 for (y = 0; y <
c->height/2; y++) {
186 for (x = 0; x <
c->width/2; x++) {
208 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.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
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 attribute_align_arg 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")
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames,...
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
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.
main external API structure.
This structure stores compressed data.
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
@ AV_CODEC_ID_MPEG2VIDEO
preferred ID for MPEG-1/2 video decoding
const AVCodec * avcodec_find_encoder_by_name(const char *name)
Find a registered encoder with the specified name.