diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-02-26 02:29:24 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-02-26 02:29:24 +0000 |
commit | 59c6178a54c414fd19e064f0077d00b82a1eb812 (patch) | |
tree | 69bc8f09fc89959005fa8527d6822cc2eeea96c0 /libavformat | |
parent | caee91f7d038f80893b3c1ccdcd1bc44a9a19351 (diff) | |
download | ffmpeg-59c6178a54c414fd19e064f0077d00b82a1eb812.tar.gz |
Use a shared function to validate FLAC extradata.
Originally committed as revision 17602 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/flacenc.c | 25 | ||||
-rw-r--r-- | libavformat/matroskaenc.c | 16 | ||||
-rw-r--r-- | libavformat/oggenc.c | 11 |
3 files changed, 33 insertions, 19 deletions
diff --git a/libavformat/flacenc.c b/libavformat/flacenc.c index 093a07a823..5595d76b7d 100644 --- a/libavformat/flacenc.c +++ b/libavformat/flacenc.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavcodec/flac.h" #include "avformat.h" static int flac_write_header(struct AVFormatContext *s) @@ -26,9 +27,15 @@ static int flac_write_header(struct AVFormatContext *s) static const uint8_t header[8] = { 0x66, 0x4C, 0x61, 0x43, 0x80, 0x00, 0x00, 0x22 }; - uint8_t *streaminfo = s->streams[0]->codec->extradata; + AVCodecContext *codec = s->streams[0]->codec; + uint8_t *streaminfo; int len = s->streams[0]->codec->extradata_size; - if(streaminfo != NULL && len > 0) { + enum FLACExtradataFormat format; + + if (!ff_flac_is_extradata_valid(codec, &format, &streaminfo)) + return -1; + + if (format == FLAC_EXTRADATA_FORMAT_STREAMINFO) { put_buffer(s->pb, header, 8); put_buffer(s->pb, streaminfo, len); } @@ -38,16 +45,22 @@ static int flac_write_header(struct AVFormatContext *s) static int flac_write_trailer(struct AVFormatContext *s) { ByteIOContext *pb = s->pb; - uint8_t *streaminfo = s->streams[0]->codec->extradata; - int len = s->streams[0]->codec->extradata_size; + uint8_t *streaminfo; + enum FLACExtradataFormat format; int64_t file_size; - if (streaminfo && len > 0 && !url_is_streamed(s->pb)) { + if (!ff_flac_is_extradata_valid(s->streams[0]->codec, &format, &streaminfo)) + return -1; + + if (!url_is_streamed(pb)) { + /* rewrite the STREAMINFO header block data */ file_size = url_ftell(pb); url_fseek(pb, 8, SEEK_SET); - put_buffer(pb, streaminfo, len); + put_buffer(pb, streaminfo, FLAC_STREAMINFO_SIZE); url_fseek(pb, file_size, SEEK_SET); put_flush_packet(pb); + } else { + av_log(s, AV_LOG_WARNING, "unable to rewrite FLAC header.\n"); } return 0; } diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index 44787be2d2..0b0adef1ba 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -28,6 +28,7 @@ #include "libavutil/md5.h" #include "libavcodec/xiph.h" #include "libavcodec/mpeg4audio.h" +#include "libavcodec/flac.h" typedef struct ebml_master { int64_t pos; ///< absolute offset in the file where the master's elements start @@ -420,23 +421,20 @@ static int put_xiph_codecpriv(AVFormatContext *s, ByteIOContext *pb, AVCodecCont return 0; } -#define FLAC_STREAMINFO_SIZE 34 - static int put_flac_codecpriv(AVFormatContext *s, ByteIOContext *pb, AVCodecContext *codec) { - // if the extradata_size is greater than FLAC_STREAMINFO_SIZE, - // assume that it's in Matroska format already - if (codec->extradata_size < FLAC_STREAMINFO_SIZE) { + uint8_t *streaminfo; + enum FLACExtradataFormat format; + + if (!ff_flac_is_extradata_valid(codec, &format, &streaminfo)) { av_log(s, AV_LOG_ERROR, "Invalid FLAC extradata\n"); return -1; - } else if (codec->extradata_size == FLAC_STREAMINFO_SIZE) { + } + if (format == FLAC_EXTRADATA_FORMAT_STREAMINFO) { // only the streaminfo packet put_buffer(pb, "fLaC", 4); put_byte(pb, 0x80); put_be24(pb, FLAC_STREAMINFO_SIZE); - } else if(memcmp("fLaC", codec->extradata, 4)) { - av_log(s, AV_LOG_ERROR, "Invalid FLAC extradata\n"); - return -1; } put_buffer(pb, codec->extradata, codec->extradata_size); return 0; diff --git a/libavformat/oggenc.c b/libavformat/oggenc.c index 4fdae05c8f..bbbee0a906 100644 --- a/libavformat/oggenc.c +++ b/libavformat/oggenc.c @@ -22,6 +22,7 @@ #include "libavutil/crc.h" #include "libavcodec/xiph.h" #include "libavcodec/bytestream.h" +#include "libavcodec/flac.h" #include "avformat.h" #include "internal.h" @@ -82,12 +83,14 @@ static int ogg_write_page(AVFormatContext *s, const uint8_t *data, int size, return size; } -static int ogg_build_flac_headers(const uint8_t *extradata, int extradata_size, +static int ogg_build_flac_headers(AVCodecContext *avctx, OGGStreamContext *oggstream, int bitexact) { const char *vendor = bitexact ? "ffmpeg" : LIBAVFORMAT_IDENT; + enum FLACExtradataFormat format; + uint8_t *streaminfo; uint8_t *p; - if (extradata_size != 34) + if (!ff_flac_is_extradata_valid(avctx, &format, &streaminfo)) return -1; oggstream->header_len[0] = 51; oggstream->header[0] = av_mallocz(51); // per ogg flac specs @@ -100,7 +103,7 @@ static int ogg_build_flac_headers(const uint8_t *extradata, int extradata_size, bytestream_put_buffer(&p, "fLaC", 4); bytestream_put_byte(&p, 0x00); // streaminfo bytestream_put_be24(&p, 34); - bytestream_put_buffer(&p, extradata, 34); + bytestream_put_buffer(&p, streaminfo, FLAC_STREAMINFO_SIZE); oggstream->header_len[1] = 1+3+4+strlen(vendor)+4; oggstream->header[1] = av_mallocz(oggstream->header_len[1]); p = oggstream->header[1]; @@ -136,7 +139,7 @@ static int ogg_write_header(AVFormatContext *s) oggstream = av_mallocz(sizeof(*oggstream)); st->priv_data = oggstream; if (st->codec->codec_id == CODEC_ID_FLAC) { - if (ogg_build_flac_headers(st->codec->extradata, st->codec->extradata_size, + if (ogg_build_flac_headers(st->codec, oggstream, st->codec->flags & CODEC_FLAG_BITEXACT) < 0) { av_log(s, AV_LOG_ERROR, "Extradata corrupted\n"); av_freep(&st->priv_data); |