[FFmpeg-cvslog] Add reminders to update the codec descriptor list with new codec IDs.

Anton Khirnov git at videolan.org
Thu Aug 30 17:37:18 CEST 2012


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Tue Aug 28 10:16:53 2012 +0200| [bbabeb56fac38347b976e7b84639de53306e4bf2] | committer: Anton Khirnov

Add reminders to update the codec descriptor list with new codec IDs.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bbabeb56fac38347b976e7b84639de53306e4bf2
---

 doc/developer.texi   |    2 ++
 libavcodec/avcodec.h |    3 +++
 2 files changed, 5 insertions(+)

diff --git a/doc/developer.texi b/doc/developer.texi
index ae9609d..aff28b8 100644
--- a/doc/developer.texi
+++ b/doc/developer.texi
@@ -404,6 +404,8 @@ send a reminder by email. Your patch should eventually be dealt with.
     Did you register it in @file{allcodecs.c} or @file{allformats.c}?
 @item
     Did you add the AVCodecID to @file{avcodec.h}?
+    When adding new codec IDs, also add an entry to the codec descriptor
+    list in @file{libavcodec/codec_desc.c}.
 @item
     If it has a fourcc, did you add it to @file{libavformat/riff.c},
     even if it is only a decoder?
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 9658b67..07d75c2 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -88,6 +88,9 @@
  * If you add a codec ID to this list, add it so that
  * 1. no value of a existing codec ID changes (that would break ABI),
  * 2. it is as close as possible to similar codecs.
+ *
+ * After adding new codec IDs, do not forget to add an entry to the codec
+ * descriptor list and bump libavcodec minor version.
  */
 enum AVCodecID {
     AV_CODEC_ID_NONE,



More information about the ffmpeg-cvslog mailing list