api-seek-test.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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. * Seek test.
  24. */
  25. #include "libavutil/adler32.h"
  26. #include "libavcodec/avcodec.h"
  27. #include "libavformat/avformat.h"
  28. #include "libavutil/imgutils.h"
  29. int64_t *pts_array;
  30. int64_t *crc_array;
  31. int size_of_array;
  32. int number_of_elements;
  33. static int add_crc_to_array(int64_t crc, int64_t pts)
  34. {
  35. if (size_of_array <= number_of_elements) {
  36. if (size_of_array == 0)
  37. size_of_array = 10;
  38. size_of_array *= 2;
  39. crc_array = av_realloc(crc_array, size_of_array * sizeof(int64_t));
  40. pts_array = av_realloc(pts_array, size_of_array * sizeof(int64_t));
  41. if ((crc_array == NULL) || (pts_array == NULL)) {
  42. av_log(NULL, AV_LOG_ERROR, "Can't allocate array to store crcs\n");
  43. return AVERROR(ENOMEM);
  44. }
  45. }
  46. crc_array[number_of_elements] = crc;
  47. pts_array[number_of_elements] = pts;
  48. number_of_elements++;
  49. return 0;
  50. }
  51. static int compare_crc_in_array(int64_t crc, int64_t pts)
  52. {
  53. int i;
  54. for (i = 0; i < number_of_elements; i++) {
  55. if (pts_array[i] == pts) {
  56. if (crc_array[i] == crc) {
  57. printf("Comparing 0x%08lx %"PRId64" %d is OK\n", crc, pts, i);
  58. return 0;
  59. }
  60. else {
  61. av_log(NULL, AV_LOG_ERROR, "Incorrect crc of a frame after seeking\n");
  62. return -1;
  63. }
  64. }
  65. }
  66. av_log(NULL, AV_LOG_ERROR, "Incorrect pts of a frame after seeking\n");
  67. return -1;
  68. }
  69. static int compute_crc_of_packets(AVFormatContext *fmt_ctx, int video_stream,
  70. AVCodecContext *ctx, AVFrame *fr, uint64_t ts_start, uint64_t ts_end, int no_seeking)
  71. {
  72. int number_of_written_bytes;
  73. int got_frame = 0;
  74. int result;
  75. int end_of_stream = 0;
  76. int byte_buffer_size;
  77. uint8_t *byte_buffer;
  78. int64_t crc;
  79. AVPacket pkt;
  80. byte_buffer_size = av_image_get_buffer_size(ctx->pix_fmt, ctx->width, ctx->height, 16);
  81. byte_buffer = av_malloc(byte_buffer_size);
  82. if (!byte_buffer) {
  83. av_log(NULL, AV_LOG_ERROR, "Can't allocate buffer\n");
  84. return AVERROR(ENOMEM);
  85. }
  86. if (!no_seeking) {
  87. result = av_seek_frame(fmt_ctx, video_stream, ts_start, AVSEEK_FLAG_ANY);
  88. printf("Seeking to %"PRId64", computing crc for frames with pts < %"PRId64"\n", ts_start, ts_end);
  89. if (result < 0) {
  90. av_log(NULL, AV_LOG_ERROR, "Error in seeking\n");
  91. return result;
  92. }
  93. avcodec_flush_buffers(ctx);
  94. }
  95. av_init_packet(&pkt);
  96. do {
  97. if (!end_of_stream)
  98. if (av_read_frame(fmt_ctx, &pkt) < 0)
  99. end_of_stream = 1;
  100. if (end_of_stream) {
  101. pkt.data = NULL;
  102. pkt.size = 0;
  103. }
  104. if (pkt.stream_index == video_stream || end_of_stream) {
  105. got_frame = 0;
  106. if ((pkt.pts == AV_NOPTS_VALUE) && (!end_of_stream)) {
  107. av_log(NULL, AV_LOG_ERROR, "Error: frames doesn't have pts values\n");
  108. return -1;
  109. }
  110. result = avcodec_decode_video2(ctx, fr, &got_frame, &pkt);
  111. if (result < 0) {
  112. av_log(NULL, AV_LOG_ERROR, "Error decoding frame\n");
  113. return result;
  114. }
  115. if (got_frame) {
  116. number_of_written_bytes = av_image_copy_to_buffer(byte_buffer, byte_buffer_size,
  117. (const uint8_t* const *)fr->data, (const int*) fr->linesize,
  118. ctx->pix_fmt, ctx->width, ctx->height, 1);
  119. if (number_of_written_bytes < 0) {
  120. av_log(NULL, AV_LOG_ERROR, "Can't copy image to buffer\n");
  121. return number_of_written_bytes;
  122. }
  123. if ((fr->pkt_pts > ts_end) && (!no_seeking))
  124. break;
  125. crc = av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes);
  126. printf("%10"PRId64", 0x%08lx\n", fr->pkt_pts, crc);
  127. if (no_seeking) {
  128. if (add_crc_to_array(crc, fr->pkt_pts) < 0)
  129. return -1;
  130. }
  131. else {
  132. if (compare_crc_in_array(crc, fr->pkt_pts) < 0)
  133. return -1;
  134. }
  135. }
  136. }
  137. av_packet_unref(&pkt);
  138. av_init_packet(&pkt);
  139. } while ((!end_of_stream || got_frame) && (no_seeking || (fr->pkt_pts + av_frame_get_pkt_duration(fr) <= ts_end)));
  140. av_packet_unref(&pkt);
  141. av_freep(&byte_buffer);
  142. return 0;
  143. }
  144. static long int read_seek_range(const char *string_with_number)
  145. {
  146. long int number;
  147. char *end_of_string = NULL;
  148. number = strtol(string_with_number, &end_of_string, 10);
  149. if ((strlen(string_with_number) != end_of_string - string_with_number) || (number < 0)) {
  150. av_log(NULL, AV_LOG_ERROR, "Incorrect input ranges of seeking\n");
  151. return -1;
  152. }
  153. else if ((number == LONG_MAX) || (number == LONG_MIN)) {
  154. if (errno == ERANGE) {
  155. av_log(NULL, AV_LOG_ERROR, "Incorrect input ranges of seeking\n");
  156. return -1;
  157. }
  158. }
  159. return number;
  160. }
  161. static int seek_test(const char *input_filename, const char *start, const char *end)
  162. {
  163. AVCodec *codec = NULL;
  164. AVCodecContext *ctx= NULL;
  165. AVCodecParameters *origin_par = NULL;
  166. AVFrame *fr = NULL;
  167. AVFormatContext *fmt_ctx = NULL;
  168. int video_stream;
  169. int result;
  170. int i, j;
  171. long int start_ts, end_ts;
  172. size_of_array = 0;
  173. number_of_elements = 0;
  174. crc_array = pts_array = NULL;
  175. result = avformat_open_input(&fmt_ctx, input_filename, NULL, NULL);
  176. if (result < 0) {
  177. av_log(NULL, AV_LOG_ERROR, "Can't open file\n");
  178. return result;
  179. }
  180. result = avformat_find_stream_info(fmt_ctx, NULL);
  181. if (result < 0) {
  182. av_log(NULL, AV_LOG_ERROR, "Can't get stream info\n");
  183. return result;
  184. }
  185. start_ts = read_seek_range(start);
  186. end_ts = read_seek_range(end);
  187. if ((start_ts < 0) || (end_ts < 0))
  188. return -1;
  189. //TODO: add ability to work with audio format
  190. video_stream = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, NULL, 0);
  191. if (video_stream < 0) {
  192. av_log(NULL, AV_LOG_ERROR, "Can't find video stream in input file\n");
  193. return -1;
  194. }
  195. origin_par = fmt_ctx->streams[video_stream]->codecpar;
  196. codec = avcodec_find_decoder(origin_par->codec_id);
  197. if (!codec) {
  198. av_log(NULL, AV_LOG_ERROR, "Can't find decoder\n");
  199. return -1;
  200. }
  201. ctx = avcodec_alloc_context3(codec);
  202. if (!ctx) {
  203. av_log(NULL, AV_LOG_ERROR, "Can't allocate decoder context\n");
  204. return AVERROR(ENOMEM);
  205. }
  206. result = avcodec_parameters_to_context(ctx, origin_par);
  207. if (result) {
  208. av_log(NULL, AV_LOG_ERROR, "Can't copy decoder context\n");
  209. return result;
  210. }
  211. result = avcodec_open2(ctx, codec, NULL);
  212. if (result < 0) {
  213. av_log(ctx, AV_LOG_ERROR, "Can't open decoder\n");
  214. return result;
  215. }
  216. fr = av_frame_alloc();
  217. if (!fr) {
  218. av_log(NULL, AV_LOG_ERROR, "Can't allocate frame\n");
  219. return AVERROR(ENOMEM);
  220. }
  221. result = compute_crc_of_packets(fmt_ctx, video_stream, ctx, fr, i, j, 1);
  222. if (result != 0)
  223. return -1;
  224. for (i = start_ts; i < end_ts; i += 100) {
  225. for (j = i + 100; j < end_ts; j += 100)
  226. result = compute_crc_of_packets(fmt_ctx, video_stream, ctx, fr, i, j, 0);
  227. if (result != 0)
  228. return -1;
  229. }
  230. av_freep(&crc_array);
  231. av_freep(&pts_array);
  232. av_frame_free(&fr);
  233. avcodec_close(ctx);
  234. avformat_close_input(&fmt_ctx);
  235. avcodec_free_context(&ctx);
  236. return 0;
  237. }
  238. int main(int argc, char **argv)
  239. {
  240. if (argc < 4) {
  241. av_log(NULL, AV_LOG_ERROR, "Incorrect input\n");
  242. return 1;
  243. }
  244. av_register_all();
  245. if (seek_test(argv[1], argv[2], argv[3]) != 0)
  246. return 1;
  247. return 0;
  248. }