flacenc.c 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * raw FLAC muxer
  3. * Copyright (c) 2006-2009 Justin Ruggles
  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 "libavcodec/flac.h"
  22. #include "avformat.h"
  23. #include "flacenc.h"
  24. int ff_flac_write_header(ByteIOContext *pb, AVCodecContext *codec)
  25. {
  26. static const uint8_t header[8] = {
  27. 0x66, 0x4C, 0x61, 0x43, 0x80, 0x00, 0x00, 0x22
  28. };
  29. uint8_t *streaminfo;
  30. enum FLACExtradataFormat format;
  31. if (!ff_flac_is_extradata_valid(codec, &format, &streaminfo))
  32. return -1;
  33. /* write "fLaC" stream marker and first metadata block header if needed */
  34. if (format == FLAC_EXTRADATA_FORMAT_STREAMINFO) {
  35. put_buffer(pb, header, 8);
  36. }
  37. /* write STREAMINFO or full header */
  38. put_buffer(pb, codec->extradata, codec->extradata_size);
  39. return 0;
  40. }
  41. static int flac_write_header(struct AVFormatContext *s)
  42. {
  43. return ff_flac_write_header(s->pb, s->streams[0]->codec);
  44. }
  45. static int flac_write_trailer(struct AVFormatContext *s)
  46. {
  47. ByteIOContext *pb = s->pb;
  48. uint8_t *streaminfo;
  49. enum FLACExtradataFormat format;
  50. int64_t file_size;
  51. if (!ff_flac_is_extradata_valid(s->streams[0]->codec, &format, &streaminfo))
  52. return -1;
  53. if (!url_is_streamed(pb)) {
  54. /* rewrite the STREAMINFO header block data */
  55. file_size = url_ftell(pb);
  56. url_fseek(pb, 8, SEEK_SET);
  57. put_buffer(pb, streaminfo, FLAC_STREAMINFO_SIZE);
  58. url_fseek(pb, file_size, SEEK_SET);
  59. put_flush_packet(pb);
  60. } else {
  61. av_log(s, AV_LOG_WARNING, "unable to rewrite FLAC header.\n");
  62. }
  63. return 0;
  64. }
  65. static int flac_write_packet(struct AVFormatContext *s, AVPacket *pkt)
  66. {
  67. put_buffer(s->pb, pkt->data, pkt->size);
  68. put_flush_packet(s->pb);
  69. return 0;
  70. }
  71. AVOutputFormat flac_muxer = {
  72. "flac",
  73. NULL_IF_CONFIG_SMALL("raw FLAC"),
  74. "audio/x-flac",
  75. "flac",
  76. 0,
  77. CODEC_ID_FLAC,
  78. CODEC_ID_NONE,
  79. flac_write_header,
  80. flac_write_packet,
  81. flac_write_trailer,
  82. .flags= AVFMT_NOTIMESTAMPS,
  83. };