]> git.sesse.net Git - ffmpeg/blob - tests/api/api-h264-slice-test.c
api-h264-slice-test: use av_be2ne16 instead of ntohs
[ffmpeg] / tests / api / api-h264-slice-test.c
1 /*
2  * Copyright (c) 2001 Fabrice Bellard
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 #define MAX_SLICES 8
24
25 // ./fate 2 ./crew_cif out.y4m
26
27 #include "config.h"
28
29 #include <stdbool.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33
34 #if HAVE_UNISTD_H
35 #include <unistd.h>
36 #endif
37 #if HAVE_IO_H
38 #include <io.h>
39 #endif
40 #include <sys/types.h>
41 #include <sys/stat.h>
42 #include <fcntl.h>
43
44 #include "libavcodec/avcodec.h"
45 #include "libavutil/pixdesc.h"
46 #include "libavutil/hash.h"
47 #include "libavutil/bswap.h"
48
49 static int header = 0;
50
51 static int decode(AVCodecContext *dec_ctx, AVFrame *frame,
52            AVPacket *pkt)
53 {
54     static uint64_t frame_cnt = 0;
55     int ret;
56
57     ret = avcodec_send_packet(dec_ctx, pkt);
58     if (ret < 0) {
59         fprintf(stderr, "Error sending a packet for decoding: %s\n", av_err2str(ret));
60         return ret;
61     }
62
63     while (ret >= 0) {
64         const AVPixFmtDescriptor *desc;
65         char sum[AV_HASH_MAX_SIZE * 2 + 1];
66         struct AVHashContext *hash;
67
68         ret = avcodec_receive_frame(dec_ctx, frame);
69         if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
70             return 0;
71         } else if (ret < 0) {
72             fprintf(stderr, "Error during decoding: %s\n", av_err2str(ret));
73             return ret;
74         }
75
76         if (!header) {
77             printf(
78             "#format: frame checksums\n"
79             "#version: 2\n"
80             "#hash: MD5\n"
81             "#tb 0: 1/30\n"
82             "#media_type 0: video\n"
83             "#codec_id 0: rawvideo\n"
84             "#dimensions 0: 352x288\n"
85             "#sar 0: 128/117\n"
86             "#stream#, dts,        pts, duration,     size, hash\n");
87             header = 1;
88         }
89         desc = av_pix_fmt_desc_get(dec_ctx->pix_fmt);
90         if ((ret = av_hash_alloc(&hash, "md5")) < 0) {
91             return ret;
92         }
93         av_hash_init(hash);
94
95         for (int i = 0; i < frame->height; i++)
96             av_hash_update(hash, &frame->data[0][i * frame->linesize[0]], frame->width);
97         for (int i = 0; i < frame->height >> desc->log2_chroma_h; i++)
98             av_hash_update(hash, &frame->data[1][i * frame->linesize[1]], frame->width >> desc->log2_chroma_w);
99         for (int i = 0; i < frame->height >> desc->log2_chroma_h; i++)
100             av_hash_update(hash, &frame->data[2][i * frame->linesize[2]], frame->width >> desc->log2_chroma_w);
101
102         av_hash_final_hex(hash, sum, av_hash_get_size(hash) * 2 + 1);
103         printf("0, %10"PRId64", %10"PRId64",        1, %8d, %s\n",
104             frame_cnt, frame_cnt,
105             (frame->width * frame->height + 2 * (frame->height >> desc->log2_chroma_h) * (frame->width >> desc->log2_chroma_w)), sum);
106         frame_cnt += 1;
107         av_hash_freep(&hash);
108     }
109     return 0;
110 }
111
112 int main(int argc, char **argv)
113 {
114     const AVCodec *codec = NULL;
115     AVCodecContext *c = NULL;
116     AVFrame *frame = NULL;
117     unsigned int threads;
118     AVPacket *pkt;
119     FILE *file = NULL;
120     char nal[MAX_SLICES * UINT16_MAX + AV_INPUT_BUFFER_PADDING_SIZE];
121     int nals = 0, ret = 0;
122     char *p = nal;
123
124     if (argc < 4) {
125         fprintf(stderr, "Usage: %s <threads> <input file> <output file>\n", argv[0]);
126         return -1;
127     }
128
129     if (!(threads = strtoul(argv[1], NULL, 0)))
130         threads = 1;
131     else if (threads > MAX_SLICES)
132         threads = MAX_SLICES;
133
134 #ifdef _WIN32
135     setmode(fileno(stdout), O_BINARY);
136 #endif
137
138     if (!(pkt = av_packet_alloc())) {
139         return -1;
140     }
141
142     if (!(codec = avcodec_find_decoder(AV_CODEC_ID_H264))) {
143         fprintf(stderr, "Codec not found\n");
144         ret = -1;
145         goto err;
146     }
147
148     if (!(c = avcodec_alloc_context3(codec))) {
149         fprintf(stderr, "Could not allocate video codec context\n");
150         ret = -1;
151         goto err;
152     }
153
154     c->width  = 352;
155     c->height = 288;
156
157     c->flags2 |= AV_CODEC_FLAG2_CHUNKS;
158     c->thread_type = FF_THREAD_SLICE;
159     c->thread_count = threads;
160
161     if ((ret = avcodec_open2(c, codec, NULL)) < 0) {
162         fprintf(stderr, "Could not open codec\n");
163         goto err;
164     }
165
166 #if HAVE_THREADS
167     if (c->active_thread_type != FF_THREAD_SLICE) {
168         fprintf(stderr, "Couldn't activate slice threading: %d\n", c->active_thread_type);
169         ret = -1;
170         goto err;
171     }
172 #else
173     fprintf(stderr, "WARN: not using threads, only checking decoding slice NALUs\n");
174 #endif
175
176     if (!(frame = av_frame_alloc())) {
177         fprintf(stderr, "Could not allocate video frame\n");
178         ret = -1;
179         goto err;
180     }
181
182     if (!(file = fopen(argv[2], "rb"))) {
183         fprintf(stderr, "Couldn't open NALU file: %s\n", argv[2]);
184         ret = -1;
185         goto err;
186     }
187
188     while(1) {
189         uint16_t size = 0;
190         size_t ret = fread(&size, 1, sizeof(uint16_t), file);
191         if (ret != sizeof(uint16_t))
192             break;
193
194         size = av_be2ne16(size);
195         ret = fread(p, 1, size, file);
196         if (ret != size) {
197             perror("Couldn't read data");
198             goto err;
199         }
200         p += ret;
201
202         if (++nals >= threads) {
203             int decret = 0;
204             pkt->data = nal;
205             pkt->size = p - nal;
206             if ((decret = decode(c, frame, pkt)) < 0) {
207                 goto err;
208             }
209             memset(nal, 0, MAX_SLICES * UINT16_MAX + AV_INPUT_BUFFER_PADDING_SIZE);
210             nals = 0;
211             p = nal;
212         }
213     }
214
215     if (nals) {
216         pkt->data = nal;
217         pkt->size = p - nal;
218         if ((ret = decode(c, frame, pkt)) < 0) {
219             goto err;
220         }
221     }
222
223     ret = decode(c, frame, NULL);
224
225 err:
226     if (file)
227         fclose(file);
228     av_frame_free(&frame);
229     avcodec_free_context(&c);
230     av_packet_free(&pkt);
231
232     return ret;
233 }