You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

159 lines
5.1KB

  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. static char buffer[20];
  29. static const char *ret_str(int v)
  30. {
  31. switch (v) {
  32. case AVERROR_EOF: return "-EOF";
  33. case AVERROR(EIO): return "-EIO";
  34. case AVERROR(ENOMEM): return "-ENOMEM";
  35. case AVERROR(EINVAL): return "-EINVAL";
  36. default:
  37. snprintf(buffer, sizeof(buffer), "%2d", v);
  38. return buffer;
  39. }
  40. }
  41. static void ts_str(char buffer[60], int64_t ts, AVRational base)
  42. {
  43. if (ts == AV_NOPTS_VALUE) {
  44. strcpy(buffer, " NOPTS ");
  45. return;
  46. }
  47. ts= av_rescale_q(ts, base, (AVRational){1, 1000000});
  48. snprintf(buffer, 60, "%c%"PRId64".%06"PRId64"", ts<0 ? '-' : ' ', FFABS(ts)/1000000, FFABS(ts)%1000000);
  49. }
  50. int main(int argc, char **argv)
  51. {
  52. const char *filename;
  53. AVFormatContext *ic = avformat_alloc_context();
  54. int i, ret, stream_id;
  55. int j;
  56. int64_t timestamp;
  57. AVDictionary *format_opts = NULL;
  58. int64_t seekfirst = AV_NOPTS_VALUE;
  59. int firstback=0;
  60. int frame_count = 1;
  61. int duration = 4;
  62. for(i=2; i<argc; i+=2){
  63. if (!strcmp(argv[i], "-seekforw")){
  64. seekfirst = atoi(argv[i+1]);
  65. } else if(!strcmp(argv[i], "-seekback")){
  66. seekfirst = atoi(argv[i+1]);
  67. firstback = 1;
  68. } else if(!strcmp(argv[i], "-frames")){
  69. frame_count = atoi(argv[i+1]);
  70. } else if(!strcmp(argv[i], "-duration")){
  71. duration = atoi(argv[i+1]);
  72. } else if(!strcmp(argv[i], "-fastseek")) {
  73. if (atoi(argv[i+1])) {
  74. ic->flags |= AVFMT_FLAG_FAST_SEEK;
  75. }
  76. } else if(argv[i][0] == '-' && argv[i+1]) {
  77. av_dict_set(&format_opts, argv[i] + 1, argv[i+1], 0);
  78. } else {
  79. argc = 1;
  80. }
  81. }
  82. av_dict_set(&format_opts, "channels", "1", 0);
  83. av_dict_set(&format_opts, "sample_rate", "22050", 0);
  84. if (argc < 2) {
  85. printf("usage: %s input_file\n"
  86. "\n", argv[0]);
  87. return 1;
  88. }
  89. filename = argv[1];
  90. ret = avformat_open_input(&ic, filename, NULL, &format_opts);
  91. av_dict_free(&format_opts);
  92. if (ret < 0) {
  93. fprintf(stderr, "cannot open %s\n", filename);
  94. return 1;
  95. }
  96. ret = avformat_find_stream_info(ic, NULL);
  97. if (ret < 0) {
  98. fprintf(stderr, "%s: could not find codec parameters\n", filename);
  99. return 1;
  100. }
  101. if(seekfirst != AV_NOPTS_VALUE){
  102. if(firstback) avformat_seek_file(ic, -1, INT64_MIN, seekfirst, seekfirst, 0);
  103. else avformat_seek_file(ic, -1, seekfirst, seekfirst, INT64_MAX, 0);
  104. }
  105. for(i=0; ; i++){
  106. AVPacket pkt = { 0 };
  107. AVStream *av_uninit(st);
  108. char ts_buf[60];
  109. if(ret>=0){
  110. for(j=0; j<frame_count; j++) {
  111. ret= av_read_frame(ic, &pkt);
  112. if(ret>=0){
  113. char dts_buf[60];
  114. st= ic->streams[pkt.stream_index];
  115. ts_str(dts_buf, pkt.dts, st->time_base);
  116. ts_str(ts_buf, pkt.pts, st->time_base);
  117. 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);
  118. av_packet_unref(&pkt);
  119. } else
  120. printf("ret:%s", ret_str(ret)); // necessary to avoid trailing whitespace
  121. printf("\n");
  122. }
  123. }
  124. if(i>25) break;
  125. stream_id= (i>>1)%(ic->nb_streams+1) - 1;
  126. timestamp= (i*19362894167LL) % (duration*AV_TIME_BASE) - AV_TIME_BASE;
  127. if(stream_id>=0){
  128. st= ic->streams[stream_id];
  129. timestamp= av_rescale_q(timestamp, AV_TIME_BASE_Q, st->time_base);
  130. }
  131. //FIXME fully test the new seek API
  132. if(i&1) ret = avformat_seek_file(ic, stream_id, INT64_MIN, timestamp, timestamp, 0);
  133. else ret = avformat_seek_file(ic, stream_id, timestamp, timestamp, INT64_MAX, 0);
  134. ts_str(ts_buf, timestamp, stream_id < 0 ? AV_TIME_BASE_Q : st->time_base);
  135. printf("ret:%-10s st:%2d flags:%d ts:%s\n", ret_str(ret), stream_id, i&1, ts_buf);
  136. }
  137. avformat_close_input(&ic);
  138. return 0;
  139. }