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/flacenc.c | |
parent | f36b39027563ad4ef2ab31e87d7da2854eb5cee7 (diff) | |
download | ffmpeg-c6cd0e17f33f3f921780866f914abe860f912b8e.tar.gz |
Replace vendor string in Ogg and FLAC muxers.
Diffstat (limited to 'libavformat/flacenc.c')
-rw-r--r-- | libavformat/flacenc.c | 2 |
1 files changed, 1 insertions, 1 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; |