diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-10-30 21:30:32 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-11-02 10:43:39 +0100 |
commit | c6cd0e17f33f3f921780866f914abe860f912b8e (patch) | |
tree | 6591bba13b32565efec2cb4762521f93f1a7e226 /libavformat | |
parent | f36b39027563ad4ef2ab31e87d7da2854eb5cee7 (diff) | |
download | ffmpeg-c6cd0e17f33f3f921780866f914abe860f912b8e.tar.gz |
Replace vendor string in Ogg and FLAC muxers.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/flacenc.c | 2 | ||||
-rw-r--r-- | libavformat/oggenc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/flacenc.c b/libavformat/flacenc.c index 00e89002fe..725dc714ce 100644 --- a/libavformat/flacenc.c +++ b/libavformat/flacenc.c @@ -41,7 +41,7 @@ static int flac_write_block_padding(AVIOContext *pb, unsigned int n_padding_byte static int flac_write_block_comment(AVIOContext *pb, AVDictionary **m, int last_block, int bitexact) { - const char *vendor = bitexact ? "ffmpeg" : LIBAVFORMAT_IDENT; + const char *vendor = bitexact ? "Libav" : LIBAVFORMAT_IDENT; unsigned int len, count; uint8_t *p, *p0; diff --git a/libavformat/oggenc.c b/libavformat/oggenc.c index 7549b3a0a3..16a14d2708 100644 --- a/libavformat/oggenc.c +++ b/libavformat/oggenc.c @@ -224,7 +224,7 @@ static int ogg_buffer_data(AVFormatContext *s, AVStream *st, static uint8_t *ogg_write_vorbiscomment(int offset, int bitexact, int *header_len, AVDictionary **m, int framing_bit) { - const char *vendor = bitexact ? "ffmpeg" : LIBAVFORMAT_IDENT; + const char *vendor = bitexact ? "Libav" : LIBAVFORMAT_IDENT; int size; uint8_t *p, *p0; unsigned int count; |