seek-test.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /*
  2. * Copyright (c) 2003 Fabrice Bellard
  3. * Copyright (c) 2007 Michael Niedermayer
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <stdint.h>
  22. #include <stdlib.h>
  23. #include <stdio.h>
  24. #include <string.h>
  25. #include "libavutil/common.h"
  26. #include "libavutil/mathematics.h"
  27. #include "libavformat/avformat.h"
  28. #undef printf
  29. #undef fprintf
  30. static char buffer[20];
  31. static const char *ret_str(int v)
  32. {
  33. switch (v) {
  34. case AVERROR_EOF: return "-EOF";
  35. case AVERROR(EIO): return "-EIO";
  36. case AVERROR(ENOMEM): return "-ENOMEM";
  37. case AVERROR(EINVAL): return "-EINVAL";
  38. default:
  39. snprintf(buffer, sizeof(buffer), "%2d", v);
  40. return buffer;
  41. }
  42. }
  43. static void ts_str(char buffer[60], int64_t ts, AVRational base)
  44. {
  45. if (ts == AV_NOPTS_VALUE) {
  46. strcpy(buffer, " NOPTS ");
  47. return;
  48. }
  49. ts= av_rescale_q(ts, base, (AVRational){1, 1000000});
  50. snprintf(buffer, 60, "%c%"PRId64".%06"PRId64"", ts<0 ? '-' : ' ', FFABS(ts)/1000000, FFABS(ts)%1000000);
  51. }
  52. int main(int argc, char **argv)
  53. {
  54. const char *filename;
  55. AVFormatContext *ic = NULL;
  56. int i, ret, stream_id;
  57. int j;
  58. int64_t timestamp;
  59. AVDictionary *format_opts = NULL;
  60. int64_t seekfirst = AV_NOPTS_VALUE;
  61. int firstback=0;
  62. int frame_count = 1;
  63. for(i=2; i<argc; i+=2){
  64. if (!strcmp(argv[i], "-seekforw")){
  65. seekfirst = atoi(argv[i+1]);
  66. } else if(!strcmp(argv[i], "-seekback")){
  67. seekfirst = atoi(argv[i+1]);
  68. firstback = 1;
  69. } else if(!strcmp(argv[i], "-frames")){
  70. frame_count = atoi(argv[i+1]);
  71. } else {
  72. argc = 1;
  73. }
  74. }
  75. av_dict_set(&format_opts, "channels", "1", 0);
  76. av_dict_set(&format_opts, "sample_rate", "22050", 0);
  77. /* initialize libavcodec, and register all codecs and formats */
  78. av_register_all();
  79. if (argc < 2) {
  80. printf("usage: %s input_file\n"
  81. "\n", argv[0]);
  82. return 1;
  83. }
  84. filename = argv[1];
  85. ret = avformat_open_input(&ic, filename, NULL, &format_opts);
  86. av_dict_free(&format_opts);
  87. if (ret < 0) {
  88. fprintf(stderr, "cannot open %s\n", filename);
  89. return 1;
  90. }
  91. ret = avformat_find_stream_info(ic, NULL);
  92. if (ret < 0) {
  93. fprintf(stderr, "%s: could not find codec parameters\n", filename);
  94. return 1;
  95. }
  96. if(seekfirst != AV_NOPTS_VALUE){
  97. if(firstback) avformat_seek_file(ic, -1, INT64_MIN, seekfirst, seekfirst, 0);
  98. else avformat_seek_file(ic, -1, seekfirst, seekfirst, INT64_MAX, 0);
  99. }
  100. for(i=0; ; i++){
  101. AVPacket pkt = { 0 };
  102. AVStream *av_uninit(st);
  103. char ts_buf[60];
  104. if(ret>=0){
  105. for(j=0; j<frame_count; j++) {
  106. ret= av_read_frame(ic, &pkt);
  107. if(ret>=0){
  108. char dts_buf[60];
  109. st= ic->streams[pkt.stream_index];
  110. ts_str(dts_buf, pkt.dts, st->time_base);
  111. ts_str(ts_buf, pkt.pts, st->time_base);
  112. printf("ret:%-10s st:%2d flags:%d dts:%s pts:%s pos:%7" PRId64 " size:%6d", ret_str(ret), pkt.stream_index, pkt.flags, dts_buf, ts_buf, pkt.pos, pkt.size);
  113. av_free_packet(&pkt);
  114. } else
  115. printf("ret:%s", ret_str(ret)); // necessary to avoid trailing whitespace
  116. printf("\n");
  117. }
  118. }
  119. if(i>25) break;
  120. stream_id= (i>>1)%(ic->nb_streams+1) - 1;
  121. timestamp= (i*19362894167LL) % (4*AV_TIME_BASE) - AV_TIME_BASE;
  122. if(stream_id>=0){
  123. st= ic->streams[stream_id];
  124. timestamp= av_rescale_q(timestamp, AV_TIME_BASE_Q, st->time_base);
  125. }
  126. //FIXME fully test the new seek API
  127. if(i&1) ret = avformat_seek_file(ic, stream_id, INT64_MIN, timestamp, timestamp, 0);
  128. else ret = avformat_seek_file(ic, stream_id, timestamp, timestamp, INT64_MAX, 0);
  129. ts_str(ts_buf, timestamp, stream_id < 0 ? AV_TIME_BASE_Q : st->time_base);
  130. printf("ret:%-10s st:%2d flags:%d ts:%s\n", ret_str(ret), stream_id, i&1, ts_buf);
  131. }
  132. avformat_close_input(&ic);
  133. return 0;
  134. }