| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |  * Copyright (c) 2001 Fabrice Bellard | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @file | 
					
						
							|  |  |  |  * video encoding with libavcodec API example | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @example encode_video.c | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  | #include <libavcodec/avcodec.h>
 | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  | #include <libavutil/opt.h>
 | 
					
						
							|  |  |  | #include <libavutil/imgutils.h>
 | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | int main(int argc, char **argv) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     const char *filename, *codec_name; | 
					
						
							| 
									
										
										
										
											2016-10-20 11:03:20 +02:00
										 |  |  |     const AVCodec *codec; | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |     AVCodecContext *c= NULL; | 
					
						
							|  |  |  |     int i, ret, x, y, got_output; | 
					
						
							|  |  |  |     FILE *f; | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     AVFrame *frame; | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |     AVPacket pkt; | 
					
						
							|  |  |  |     uint8_t endcode[] = { 0, 0, 1, 0xb7 }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     if (argc <= 2) { | 
					
						
							|  |  |  |         fprintf(stderr, "Usage: %s <output file> <codec name>\n", argv[0]); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |         exit(0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     filename = argv[1]; | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     codec_name = argv[2]; | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     avcodec_register_all(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* find the mpeg1video encoder */ | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     codec = avcodec_find_encoder_by_name(codec_name); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |     if (!codec) { | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |         fprintf(stderr, "Codec not found\n"); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     c = avcodec_alloc_context3(codec); | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     if (!c) { | 
					
						
							|  |  |  |         fprintf(stderr, "Could not allocate video codec context\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* put sample parameters */ | 
					
						
							|  |  |  |     c->bit_rate = 400000; | 
					
						
							|  |  |  |     /* resolution must be a multiple of two */ | 
					
						
							|  |  |  |     c->width = 352; | 
					
						
							|  |  |  |     c->height = 288; | 
					
						
							|  |  |  |     /* frames per second */ | 
					
						
							| 
									
										
										
										
											2016-10-20 11:03:20 +02:00
										 |  |  |     c->time_base = (AVRational){1, 25}; | 
					
						
							|  |  |  |     c->framerate = (AVRational){25, 1}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     /* emit one intra frame every ten frames
 | 
					
						
							|  |  |  |      * check frame pict_type before passing frame | 
					
						
							|  |  |  |      * to encoder, if frame->pict_type is AV_PICTURE_TYPE_I | 
					
						
							|  |  |  |      * then gop_size is ignored and the output of encoder | 
					
						
							|  |  |  |      * will always be I frame irrespective to gop_size | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     c->gop_size = 10; | 
					
						
							|  |  |  |     c->max_b_frames = 1; | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |     c->pix_fmt = AV_PIX_FMT_YUV420P; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     if (codec->id == AV_CODEC_ID_H264) | 
					
						
							|  |  |  |         av_opt_set(c->priv_data, "preset", "slow", 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |     /* open it */ | 
					
						
							|  |  |  |     if (avcodec_open2(c, codec, NULL) < 0) { | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |         fprintf(stderr, "Could not open codec\n"); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     f = fopen(filename, "wb"); | 
					
						
							|  |  |  |     if (!f) { | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |         fprintf(stderr, "Could not open %s\n", filename); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     frame = av_frame_alloc(); | 
					
						
							|  |  |  |     if (!frame) { | 
					
						
							|  |  |  |         fprintf(stderr, "Could not allocate video frame\n"); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     frame->format = c->pix_fmt; | 
					
						
							|  |  |  |     frame->width  = c->width; | 
					
						
							|  |  |  |     frame->height = c->height; | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     /* the image can be allocated by any means and av_image_alloc() is
 | 
					
						
							|  |  |  |      * just the most convenient way if av_malloc() is to be used */ | 
					
						
							|  |  |  |     ret = av_image_alloc(frame->data, frame->linesize, c->width, c->height, | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |                          c->pix_fmt, 32); | 
					
						
							|  |  |  |     if (ret < 0) { | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |         fprintf(stderr, "Could not allocate raw picture buffer\n"); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* encode 1 second of video */ | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     for (i = 0; i < 25; i++) { | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |         av_init_packet(&pkt); | 
					
						
							|  |  |  |         pkt.data = NULL;    // packet data will be allocated by the encoder
 | 
					
						
							|  |  |  |         pkt.size = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         fflush(stdout); | 
					
						
							|  |  |  |         /* prepare a dummy image */ | 
					
						
							|  |  |  |         /* Y */ | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |         for (y = 0; y < c->height; y++) { | 
					
						
							|  |  |  |             for (x = 0; x < c->width; x++) { | 
					
						
							|  |  |  |                 frame->data[0][y * frame->linesize[0] + x] = x + y + i * 3; | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Cb and Cr */ | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |         for (y = 0; y < c->height/2; y++) { | 
					
						
							|  |  |  |             for (x = 0; x < c->width/2; x++) { | 
					
						
							|  |  |  |                 frame->data[1][y * frame->linesize[1] + x] = 128 + y + i * 2; | 
					
						
							|  |  |  |                 frame->data[2][y * frame->linesize[2] + x] = 64 + x + i * 5; | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |         frame->pts = i; | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* encode the image */ | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |         ret = avcodec_encode_video2(c, &pkt, frame, &got_output); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |         if (ret < 0) { | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |             fprintf(stderr, "Error encoding frame\n"); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (got_output) { | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |             printf("Write frame %3d (size=%5d)\n", i, pkt.size); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |             fwrite(pkt.data, 1, pkt.size, f); | 
					
						
							|  |  |  |             av_packet_unref(&pkt); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* get the delayed frames */ | 
					
						
							|  |  |  |     for (got_output = 1; got_output; i++) { | 
					
						
							|  |  |  |         fflush(stdout); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ret = avcodec_encode_video2(c, &pkt, NULL, &got_output); | 
					
						
							|  |  |  |         if (ret < 0) { | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |             fprintf(stderr, "Error encoding frame\n"); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (got_output) { | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |             printf("Write frame %3d (size=%5d)\n", i, pkt.size); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  |             fwrite(pkt.data, 1, pkt.size, f); | 
					
						
							|  |  |  |             av_packet_unref(&pkt); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* add sequence end code to have a real MPEG file */ | 
					
						
							|  |  |  |     fwrite(endcode, 1, sizeof(endcode), f); | 
					
						
							|  |  |  |     fclose(f); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     avcodec_free_context(&c); | 
					
						
							| 
									
										
										
										
											2017-03-29 14:07:39 +02:00
										 |  |  |     av_freep(&frame->data[0]); | 
					
						
							|  |  |  |     av_frame_free(&frame); | 
					
						
							| 
									
										
										
										
											2016-10-19 21:05:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } |