]> git.sesse.net Git - ffmpeg/blob - tests/api/api-h264-test.c
Merge commit '0cff125200ab53fa3ae70d85b4f614f269fe3426'
[ffmpeg] / tests / api / api-h264-test.c
1 /*
2  * Copyright (c) 2015 Ludmila Glinskih
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22
23 /**
24  * H264 codec test.
25  */
26
27 #include "libavutil/adler32.h"
28 #include "libavcodec/avcodec.h"
29 #include "libavformat/avformat.h"
30 #include "libavutil/imgutils.h"
31
32 static int video_decode_example(const char *input_filename)
33 {
34     AVCodec *codec = NULL;
35     AVCodecContext *origin_ctx = NULL, *ctx= NULL;
36     AVFrame *fr = NULL;
37     uint8_t *byte_buffer = NULL;
38     AVPacket pkt;
39     AVFormatContext *fmt_ctx = NULL;
40     int number_of_written_bytes;
41     int video_stream;
42     int get_frame = 0;
43     int byte_buffer_size;
44     int i = 0;
45     int result;
46
47     result = avformat_open_input(&fmt_ctx, input_filename, NULL, NULL);
48     if (result < 0) {
49         av_log(NULL, AV_LOG_ERROR, "Can't open file\n");
50         return result;
51     }
52
53     result = avformat_find_stream_info(fmt_ctx, NULL);
54     if (result < 0) {
55         av_log(NULL, AV_LOG_ERROR, "Can't get stream info\n");
56         return result;
57     }
58
59     video_stream = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, NULL, 0);
60     if (video_stream < 0) {
61       av_log(NULL, AV_LOG_ERROR, "Can't find video stream in input file\n");
62       return -1;
63     }
64
65     origin_ctx = fmt_ctx->streams[video_stream]->codec;
66
67     codec = avcodec_find_decoder(origin_ctx->codec_id);
68     if (!codec) {
69         av_log(NULL, AV_LOG_ERROR, "Can't find decoder\n");
70         return -1;
71     }
72
73     ctx = avcodec_alloc_context3(codec);
74     if (!ctx) {
75         av_log(NULL, AV_LOG_ERROR, "Can't allocate decoder context\n");
76         return AVERROR(ENOMEM);
77     }
78
79     result = avcodec_copy_context(ctx, origin_ctx);
80     if (result) {
81         av_log(NULL, AV_LOG_ERROR, "Can't copy decoder context\n");
82         return result;
83     }
84
85     result = avcodec_open2(ctx, codec, NULL);
86     if (result < 0) {
87         av_log(ctx, AV_LOG_ERROR, "Can't open decoder\n");
88         return result;
89     }
90
91     fr = av_frame_alloc();
92     if (!fr) {
93         av_log(NULL, AV_LOG_ERROR, "Can't allocate frame\n");
94         return AVERROR(ENOMEM);
95     }
96
97     byte_buffer_size = av_image_get_buffer_size(ctx->pix_fmt, ctx->width, ctx->height, 16);
98     byte_buffer = av_malloc(byte_buffer_size);
99     if (!byte_buffer) {
100         av_log(NULL, AV_LOG_ERROR, "Can't allocate buffer\n");
101         return AVERROR(ENOMEM);
102     }
103
104     printf("#tb %d: %d/%d\n", video_stream, fmt_ctx->streams[video_stream]->time_base.num, fmt_ctx->streams[video_stream]->time_base.den);
105     i = 0;
106     av_init_packet(&pkt);
107     while (av_read_frame(fmt_ctx, &pkt) >= 0) {
108         if (pkt.stream_index == video_stream) {
109             get_frame = 0;
110             if (pkt.pts == AV_NOPTS_VALUE)
111                 pkt.pts = pkt.dts = i;
112             result = avcodec_decode_video2(ctx, fr, &get_frame, &pkt);
113             if (result < 0) {
114                 av_log(NULL, AV_LOG_ERROR, "Error decoding frame\n");
115                 return result;
116             }
117             if (get_frame) {
118                 number_of_written_bytes = av_image_copy_to_buffer(byte_buffer, byte_buffer_size,
119                                         (const uint8_t* const *)fr->data, (const int*) fr->linesize,
120                                         ctx->pix_fmt, ctx->width, ctx->height, 1);
121                 if (number_of_written_bytes < 0) {
122                     av_log(NULL, AV_LOG_ERROR, "Can't copy image to buffer\n");
123                     return number_of_written_bytes;
124                 }
125                 printf("%d, %10"PRId64", %10"PRId64", %8"PRId64", %8d, 0x%08lx\n", video_stream,
126                         fr->pkt_pts, fr->pkt_dts, av_frame_get_pkt_duration(fr),
127                         number_of_written_bytes, av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes));
128             }
129             av_free_packet(&pkt);
130             av_init_packet(&pkt);
131         }
132         i++;
133     }
134     pkt.data = NULL;
135     pkt.size = 0;
136     if (pkt.pts == AV_NOPTS_VALUE)
137         pkt.pts = pkt.dts = i;
138     do {
139         get_frame = 0;
140         result =  avcodec_decode_video2(ctx, fr, &get_frame, &pkt);
141         if (result < 0) {
142             av_log(NULL, AV_LOG_ERROR, "Error decoding frame\n");
143             return result;
144         }
145         if (get_frame) {
146             number_of_written_bytes = av_image_copy_to_buffer(byte_buffer, byte_buffer_size,
147                                     (const uint8_t* const *)fr->data, (const int*) fr->linesize,
148                                     ctx->pix_fmt, ctx->width, ctx->height, 1);
149             if (number_of_written_bytes < 0) {
150                 av_log(NULL, AV_LOG_ERROR, "Can't copy image to buffer\n");
151                 return number_of_written_bytes;
152             }
153             printf("%d, %10"PRId64", %10"PRId64", %8"PRId64", %8d, 0x%08lx\n", video_stream,
154                     fr->pkt_pts, fr->pkt_dts, av_frame_get_pkt_duration(fr),
155                     number_of_written_bytes, av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes));
156         }
157         i++;
158     } while (get_frame);
159
160     av_free_packet(&pkt);
161     av_frame_free(&fr);
162     avcodec_close(ctx);
163     avformat_close_input(&fmt_ctx);
164     avcodec_free_context(&ctx);
165     av_freep(&byte_buffer);
166     return 0;
167 }
168
169 int main(int argc, char **argv)
170 {
171     if (argc < 2)
172     {
173         av_log(NULL, AV_LOG_ERROR, "Incorrect input\n");
174         return 1;
175     }
176
177     av_register_all();
178
179     if (video_decode_example(argv[1]) != 0)
180         return 1;
181
182     return 0;
183 }