summaryrefslogtreecommitdiff
path: root/libavformat/oggenc.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-10-30 21:30:32 +0100
committerDiego Biurrun <diego@biurrun.de>2011-11-02 10:43:39 +0100
commitc6cd0e17f33f3f921780866f914abe860f912b8e (patch)
tree6591bba13b32565efec2cb4762521f93f1a7e226 /libavformat/oggenc.c
parentf36b39027563ad4ef2ab31e87d7da2854eb5cee7 (diff)
Replace vendor string in Ogg and FLAC muxers.
Diffstat (limited to 'libavformat/oggenc.c')
-rw-r--r--libavformat/oggenc.c2
1 files changed, 1 insertions, 1 deletions
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;