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.

131 lines
3.9KB

  1. /*
  2. * Copyright (c) 2003 Fabrice Bellard
  3. * Copyright (c) 2007 Michael Niedermayer
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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. double tsval;
  44. if (ts == AV_NOPTS_VALUE) {
  45. strcpy(buffer, " NOPTS ");
  46. return;
  47. }
  48. tsval = ts * av_q2d(base);
  49. snprintf(buffer, 60, "%9f", tsval);
  50. }
  51. int main(int argc, char **argv)
  52. {
  53. const char *filename;
  54. AVFormatContext *ic = NULL;
  55. int i, ret, stream_id;
  56. int64_t timestamp;
  57. AVDictionary *format_opts = NULL;
  58. av_dict_set(&format_opts, "channels", "1", 0);
  59. av_dict_set(&format_opts, "sample_rate", "22050", 0);
  60. /* initialize libavcodec, and register all codecs and formats */
  61. av_register_all();
  62. if (argc != 2) {
  63. printf("usage: %s input_file\n"
  64. "\n", argv[0]);
  65. return 1;
  66. }
  67. filename = argv[1];
  68. ret = avformat_open_input(&ic, filename, NULL, &format_opts);
  69. av_dict_free(&format_opts);
  70. if (ret < 0) {
  71. fprintf(stderr, "cannot open %s\n", filename);
  72. return 1;
  73. }
  74. ret = avformat_find_stream_info(ic, NULL);
  75. if (ret < 0) {
  76. fprintf(stderr, "%s: could not find codec parameters\n", filename);
  77. return 1;
  78. }
  79. for(i=0; ; i++){
  80. AVPacket pkt = { 0 };
  81. AVStream *av_uninit(st);
  82. char ts_buf[60];
  83. if(ret>=0){
  84. ret= av_read_frame(ic, &pkt);
  85. if(ret>=0){
  86. char dts_buf[60];
  87. st= ic->streams[pkt.stream_index];
  88. ts_str(dts_buf, pkt.dts, st->time_base);
  89. ts_str(ts_buf, pkt.pts, st->time_base);
  90. 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);
  91. av_packet_unref(&pkt);
  92. } else
  93. printf("ret:%s", ret_str(ret)); // necessary to avoid trailing whitespace
  94. printf("\n");
  95. }
  96. if(i>25) break;
  97. stream_id= (i>>1)%(ic->nb_streams+1) - 1;
  98. timestamp= (i*19362894167LL) % (4*AV_TIME_BASE) - AV_TIME_BASE;
  99. if(stream_id>=0){
  100. st= ic->streams[stream_id];
  101. timestamp= av_rescale_q(timestamp, AV_TIME_BASE_Q, st->time_base);
  102. }
  103. //FIXME fully test the new seek API
  104. if(i&1) ret = avformat_seek_file(ic, stream_id, INT64_MIN, timestamp, timestamp, 0);
  105. else ret = avformat_seek_file(ic, stream_id, timestamp, timestamp, INT64_MAX, 0);
  106. ts_str(ts_buf, timestamp, stream_id < 0 ? AV_TIME_BASE_Q : st->time_base);
  107. printf("ret:%-10s st:%2d flags:%d ts:%s\n", ret_str(ret), stream_id, i&1, ts_buf);
  108. }
  109. avformat_close_input(&ic);
  110. return 0;
  111. }