[Ffmpeg-cvslog] r6772 - in trunk: libavcodec/vp6.c libavformat/flvdec.c
aurel
subversion
Mon Oct 23 02:10:19 CEST 2006
Author: aurel
Date: Mon Oct 23 02:10:18 2006
New Revision: 6772
Modified:
trunk/libavcodec/vp6.c
trunk/libavformat/flvdec.c
Log:
document the extradata protocol for VP6F
Modified: trunk/libavcodec/vp6.c
==============================================================================
--- trunk/libavcodec/vp6.c (original)
+++ trunk/libavcodec/vp6.c Mon Oct 23 02:10:18 2006
@@ -19,6 +19,11 @@
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ *
+ * The VP6F decoder accept an optional 1 byte extradata. It is composed of:
+ * - upper 4bits: difference between encoded width and visible width
+ * - lower 4bits: difference between encoded height and visible height
*/
#include <stdlib.h>
Modified: trunk/libavformat/flvdec.c
==============================================================================
--- trunk/libavformat/flvdec.c (original)
+++ trunk/libavformat/flvdec.c Mon Oct 23 02:10:18 2006
@@ -17,6 +17,12 @@
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ *
+ * This demuxer will generate a 1 byte extradata for VP6F content.
+ * It is composed of:
+ * - upper 4bits: difference between encoded width and visible width
+ * - lower 4bits: difference between encoded height and visible height
*/
#include "avformat.h"
More information about the ffmpeg-cvslog
mailing list