summaryrefslogtreecommitdiff
path: root/libavformat/md5enc.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2013-05-24 14:24:46 +0200
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2013-05-24 16:28:25 +0200
commit4059c7836a57df95821505dd67322a31ee99f9e8 (patch)
treef3458346327a6ffa863c7c994f86a8be988ddadc /libavformat/md5enc.c
parent82d105543cd25dac7fb29a89bd052105ea4272a3 (diff)
framemd5_class and md5enc_class may not be identical.
Due the crappy issue of classes having to be unique, we cannot even have classes with identical content, otherwise the compiler or linker is free to merge them, giving the same result and bugs as if we had only one class. Besides redesigning the option code to handle this correctly I see only the option of requiring any two classes to have different names, but the list of requirements for AVClasses is getting kind of unmanageable. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavformat/md5enc.c')
-rw-r--r--libavformat/md5enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/md5enc.c b/libavformat/md5enc.c
index cb92c0ce14..06c9c41c12 100644
--- a/libavformat/md5enc.c
+++ b/libavformat/md5enc.c
@@ -141,7 +141,7 @@ static int framemd5_write_trailer(struct AVFormatContext *s)
}
static const AVClass framemd5_class = {
- .class_name = "hash encoder class",
+ .class_name = "frame hash encoder class",
.item_name = av_default_item_name,
.option = hash_options,
.version = LIBAVUTIL_VERSION_INT,