extract_mvs.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * Copyright (c) 2012 Stefano Sabatini
  3. * Copyright (c) 2014 Clément Bœsch
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a copy
  6. * of this software and associated documentation files (the "Software"), to deal
  7. * in the Software without restriction, including without limitation the rights
  8. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. * copies of the Software, and to permit persons to whom the Software is
  10. * furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be included in
  13. * all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  21. * THE SOFTWARE.
  22. */
  23. #include <libavutil/motion_vector.h>
  24. #include <libavformat/avformat.h>
  25. static AVFormatContext *fmt_ctx = NULL;
  26. static AVCodecContext *video_dec_ctx = NULL;
  27. static AVStream *video_stream = NULL;
  28. static const char *src_filename = NULL;
  29. static int video_stream_idx = -1;
  30. static AVFrame *frame = NULL;
  31. static int video_frame_count = 0;
  32. static int decode_packet(const AVPacket *pkt)
  33. {
  34. int ret = avcodec_send_packet(video_dec_ctx, pkt);
  35. if (ret < 0) {
  36. fprintf(stderr, "Error while sending a packet to the decoder: %s\n", av_err2str(ret));
  37. return ret;
  38. }
  39. while (ret >= 0) {
  40. ret = avcodec_receive_frame(video_dec_ctx, frame);
  41. if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
  42. break;
  43. } else if (ret < 0) {
  44. fprintf(stderr, "Error while receiving a frame from the decoder: %s\n", av_err2str(ret));
  45. return ret;
  46. }
  47. if (ret >= 0) {
  48. int i;
  49. AVFrameSideData *sd;
  50. video_frame_count++;
  51. sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS);
  52. if (sd) {
  53. const AVMotionVector *mvs = (const AVMotionVector *)sd->data;
  54. for (i = 0; i < sd->size / sizeof(*mvs); i++) {
  55. const AVMotionVector *mv = &mvs[i];
  56. printf("%d,%2d,%2d,%2d,%4d,%4d,%4d,%4d,0x%"PRIx64"\n",
  57. video_frame_count, mv->source,
  58. mv->w, mv->h, mv->src_x, mv->src_y,
  59. mv->dst_x, mv->dst_y, mv->flags);
  60. }
  61. }
  62. av_frame_unref(frame);
  63. }
  64. }
  65. return 0;
  66. }
  67. static int open_codec_context(AVFormatContext *fmt_ctx, enum AVMediaType type)
  68. {
  69. int ret;
  70. AVStream *st;
  71. AVCodecContext *dec_ctx = NULL;
  72. AVCodec *dec = NULL;
  73. AVDictionary *opts = NULL;
  74. ret = av_find_best_stream(fmt_ctx, type, -1, -1, &dec, 0);
  75. if (ret < 0) {
  76. fprintf(stderr, "Could not find %s stream in input file '%s'\n",
  77. av_get_media_type_string(type), src_filename);
  78. return ret;
  79. } else {
  80. int stream_idx = ret;
  81. st = fmt_ctx->streams[stream_idx];
  82. dec_ctx = avcodec_alloc_context3(dec);
  83. if (!dec_ctx) {
  84. fprintf(stderr, "Failed to allocate codec\n");
  85. return AVERROR(EINVAL);
  86. }
  87. ret = avcodec_parameters_to_context(dec_ctx, st->codecpar);
  88. if (ret < 0) {
  89. fprintf(stderr, "Failed to copy codec parameters to codec context\n");
  90. return ret;
  91. }
  92. /* Init the video decoder */
  93. av_dict_set(&opts, "flags2", "+export_mvs", 0);
  94. if ((ret = avcodec_open2(dec_ctx, dec, &opts)) < 0) {
  95. fprintf(stderr, "Failed to open %s codec\n",
  96. av_get_media_type_string(type));
  97. return ret;
  98. }
  99. video_stream_idx = stream_idx;
  100. video_stream = fmt_ctx->streams[video_stream_idx];
  101. video_dec_ctx = dec_ctx;
  102. }
  103. return 0;
  104. }
  105. int main(int argc, char **argv)
  106. {
  107. int ret = 0;
  108. AVPacket pkt = { 0 };
  109. if (argc != 2) {
  110. fprintf(stderr, "Usage: %s <video>\n", argv[0]);
  111. exit(1);
  112. }
  113. src_filename = argv[1];
  114. if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) {
  115. fprintf(stderr, "Could not open source file %s\n", src_filename);
  116. exit(1);
  117. }
  118. if (avformat_find_stream_info(fmt_ctx, NULL) < 0) {
  119. fprintf(stderr, "Could not find stream information\n");
  120. exit(1);
  121. }
  122. open_codec_context(fmt_ctx, AVMEDIA_TYPE_VIDEO);
  123. av_dump_format(fmt_ctx, 0, src_filename, 0);
  124. if (!video_stream) {
  125. fprintf(stderr, "Could not find video stream in the input, aborting\n");
  126. ret = 1;
  127. goto end;
  128. }
  129. frame = av_frame_alloc();
  130. if (!frame) {
  131. fprintf(stderr, "Could not allocate frame\n");
  132. ret = AVERROR(ENOMEM);
  133. goto end;
  134. }
  135. printf("framenum,source,blockw,blockh,srcx,srcy,dstx,dsty,flags\n");
  136. /* read frames from the file */
  137. while (av_read_frame(fmt_ctx, &pkt) >= 0) {
  138. if (pkt.stream_index == video_stream_idx)
  139. ret = decode_packet(&pkt);
  140. av_packet_unref(&pkt);
  141. if (ret < 0)
  142. break;
  143. }
  144. /* flush cached frames */
  145. decode_packet(NULL);
  146. end:
  147. avcodec_free_context(&video_dec_ctx);
  148. avformat_close_input(&fmt_ctx);
  149. av_frame_free(&frame);
  150. return ret < 0;
  151. }