seek-test.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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 exit
  29. #undef printf
  30. #undef fprintf
  31. static char buffer[20];
  32. static const char *ret_str(int v)
  33. {
  34. switch (v) {
  35. case AVERROR_EOF: return "-EOF";
  36. case AVERROR(EIO): return "-EIO";
  37. case AVERROR(ENOMEM): return "-ENOMEM";
  38. case AVERROR(EINVAL): return "-EINVAL";
  39. default:
  40. snprintf(buffer, sizeof(buffer), "%2d", v);
  41. return buffer;
  42. }
  43. }
  44. static void ts_str(char buffer[60], int64_t ts, AVRational base)
  45. {
  46. double tsval;
  47. if (ts == AV_NOPTS_VALUE) {
  48. strcpy(buffer, " NOPTS ");
  49. return;
  50. }
  51. tsval = ts * av_q2d(base);
  52. snprintf(buffer, 60, "%9f", tsval);
  53. }
  54. int main(int argc, char **argv)
  55. {
  56. const char *filename;
  57. AVFormatContext *ic = NULL;
  58. int i, ret, stream_id;
  59. int64_t timestamp;
  60. AVFormatParameters params, *ap= &params;
  61. memset(ap, 0, sizeof(params));
  62. ap->channels=1;
  63. ap->sample_rate= 22050;
  64. /* initialize libavcodec, and register all codecs and formats */
  65. av_register_all();
  66. if (argc != 2) {
  67. printf("usage: %s input_file\n"
  68. "\n", argv[0]);
  69. exit(1);
  70. }
  71. filename = argv[1];
  72. ret = av_open_input_file(&ic, filename, NULL, 0, ap);
  73. if (ret < 0) {
  74. fprintf(stderr, "cannot open %s\n", filename);
  75. exit(1);
  76. }
  77. ret = av_find_stream_info(ic);
  78. if (ret < 0) {
  79. fprintf(stderr, "%s: could not find codec parameters\n", filename);
  80. exit(1);
  81. }
  82. for(i=0; ; i++){
  83. AVPacket pkt;
  84. AVStream *av_uninit(st);
  85. char ts_buf[60];
  86. memset(&pkt, 0, sizeof(pkt));
  87. if(ret>=0){
  88. ret= av_read_frame(ic, &pkt);
  89. if(ret>=0){
  90. char dts_buf[60];
  91. st= ic->streams[pkt.stream_index];
  92. ts_str(dts_buf, pkt.dts, st->time_base);
  93. ts_str(ts_buf, pkt.pts, st->time_base);
  94. 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);
  95. av_free_packet(&pkt);
  96. } else
  97. printf("ret:%s", ret_str(ret)); // necessary to avoid trailing whitespace
  98. printf("\n");
  99. }
  100. if(i>25) break;
  101. stream_id= (i>>1)%(ic->nb_streams+1) - 1;
  102. timestamp= (i*19362894167LL) % (4*AV_TIME_BASE) - AV_TIME_BASE;
  103. if(stream_id>=0){
  104. st= ic->streams[stream_id];
  105. timestamp= av_rescale_q(timestamp, AV_TIME_BASE_Q, st->time_base);
  106. }
  107. //FIXME fully test the new seek API
  108. if(i&1) ret = avformat_seek_file(ic, stream_id, INT64_MIN, timestamp, timestamp, 0);
  109. else ret = avformat_seek_file(ic, stream_id, timestamp, timestamp, INT64_MAX, 0);
  110. ts_str(ts_buf, timestamp, stream_id < 0 ? AV_TIME_BASE_Q : st->time_base);
  111. printf("ret:%-10s st:%2d flags:%d ts:%s\n", ret_str(ret), stream_id, i&1, ts_buf);
  112. }
  113. av_close_input_file(ic);
  114. return 0;
  115. }