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.

120 lines
3.5KB

  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 "libavutil/common.h"
  25. #include "libavformat/avformat.h"
  26. #undef exit
  27. #undef printf
  28. #undef fprintf
  29. static char buffer[20];
  30. static const char *ret_str(int v)
  31. {
  32. switch (v) {
  33. case AVERROR_EOF: return "-EOF";
  34. case AVERROR(EIO): return "-EIO";
  35. case AVERROR(ENOMEM): return "-ENOMEM";
  36. case AVERROR(EINVAL): return "-EINVAL";
  37. default:
  38. snprintf(buffer, sizeof(buffer), "%2d", v);
  39. return buffer;
  40. }
  41. }
  42. int main(int argc, char **argv)
  43. {
  44. const char *filename;
  45. AVFormatContext *ic;
  46. int i, ret, stream_id;
  47. int64_t timestamp;
  48. AVFormatParameters params, *ap= &params;
  49. memset(ap, 0, sizeof(params));
  50. ap->channels=1;
  51. ap->sample_rate= 22050;
  52. /* initialize libavcodec, and register all codecs and formats */
  53. av_register_all();
  54. if (argc != 2) {
  55. printf("usage: %s input_file\n"
  56. "\n", argv[0]);
  57. exit(1);
  58. }
  59. filename = argv[1];
  60. /* allocate the media context */
  61. ic = avformat_alloc_context();
  62. if (!ic) {
  63. fprintf(stderr, "Memory error\n");
  64. exit(1);
  65. }
  66. ret = av_open_input_file(&ic, filename, NULL, 0, ap);
  67. if (ret < 0) {
  68. fprintf(stderr, "cannot open %s\n", filename);
  69. exit(1);
  70. }
  71. ret = av_find_stream_info(ic);
  72. if (ret < 0) {
  73. fprintf(stderr, "%s: could not find codec parameters\n", filename);
  74. exit(1);
  75. }
  76. for(i=0; ; i++){
  77. AVPacket pkt;
  78. AVStream *av_uninit(st);
  79. memset(&pkt, 0, sizeof(pkt));
  80. if(ret>=0){
  81. ret= av_read_frame(ic, &pkt);
  82. printf("ret:%s", ret_str(ret));
  83. if(ret>=0){
  84. st= ic->streams[pkt.stream_index];
  85. printf(" st:%2d dts:%f pts:%f pos:%" PRId64 " size:%d flags:%d", pkt.stream_index, pkt.dts*av_q2d(st->time_base), pkt.pts*av_q2d(st->time_base), pkt.pos, pkt.size, pkt.flags);
  86. }
  87. printf("\n");
  88. }
  89. if(i>25) break;
  90. stream_id= (i>>1)%(ic->nb_streams+1) - 1;
  91. timestamp= (i*19362894167LL) % (4*AV_TIME_BASE) - AV_TIME_BASE;
  92. if(stream_id>=0){
  93. st= ic->streams[stream_id];
  94. timestamp= av_rescale_q(timestamp, AV_TIME_BASE_Q, st->time_base);
  95. }
  96. //FIXME fully test the new seek API
  97. if(i&1) ret = avformat_seek_file(ic, stream_id, INT64_MIN, timestamp, timestamp, 0);
  98. else ret = avformat_seek_file(ic, stream_id, timestamp, timestamp, INT64_MAX, 0);
  99. printf("ret:%s st:%2d ts:%f flags:%d\n", ret_str(ret), stream_id, timestamp*(stream_id<0 ? 1.0/AV_TIME_BASE : av_q2d(st->time_base)), i&1);
  100. }
  101. return 0;
  102. }