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.

87 lines
2.3KB

  1. /*
  2. * G.723.1 demuxer
  3. * Copyright (c) 2010 Mohamed Naufal Basheer
  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. /**
  22. * @file
  23. * G.723.1 demuxer
  24. */
  25. #include "libavutil/attributes.h"
  26. #include "libavutil/channel_layout.h"
  27. #include "avformat.h"
  28. #include "internal.h"
  29. static const uint8_t frame_size[4] = { 24, 20, 4, 1 };
  30. static av_cold int g723_1_init(AVFormatContext *s)
  31. {
  32. AVStream *st;
  33. st = avformat_new_stream(s, NULL);
  34. if (!st)
  35. return AVERROR(ENOMEM);
  36. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  37. st->codecpar->codec_id = AV_CODEC_ID_G723_1;
  38. st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
  39. st->codecpar->channels = 1;
  40. st->codecpar->sample_rate = 8000;
  41. avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
  42. st->start_time = 0;
  43. return 0;
  44. }
  45. static int g723_1_read_packet(AVFormatContext *s, AVPacket *pkt)
  46. {
  47. int size, byte, ret;
  48. pkt->pos = avio_tell(s->pb);
  49. byte = avio_r8(s->pb);
  50. size = frame_size[byte & 3];
  51. ret = av_new_packet(pkt, size);
  52. if (ret < 0)
  53. return ret;
  54. pkt->data[0] = byte;
  55. pkt->duration = 240;
  56. pkt->stream_index = 0;
  57. ret = avio_read(s->pb, pkt->data + 1, size - 1);
  58. if (ret < size - 1) {
  59. av_packet_unref(pkt);
  60. return ret < 0 ? ret : AVERROR_EOF;
  61. }
  62. return pkt->size;
  63. }
  64. AVInputFormat ff_g723_1_demuxer = {
  65. .name = "g723_1",
  66. .long_name = NULL_IF_CONFIG_SMALL("G.723.1"),
  67. .read_header = g723_1_init,
  68. .read_packet = g723_1_read_packet,
  69. .extensions = "tco",
  70. .flags = AVFMT_GENERIC_INDEX
  71. };