]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/flacenc.c
cljr: set the properties of the coded_frame, not input frame.
[ffmpeg] / libavformat / flacenc.c
index 00e89002fe78b8858d0a70694682d1a6aa1e929f..725dc714ceed62c5cbfbaf2eb389a91d6bfb9cbf 100644 (file)
@@ -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;