diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2006-10-23 00:10:18 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2006-10-23 00:10:18 +0000 |
commit | 246f86a4d6cb456746fe64249cdd15e5da3bcfd7 (patch) | |
tree | 3c4fb21f7dd57b1e93ef9bb3c4b310084efb5af5 /libavcodec | |
parent | fa73604f61e9f067feb24078128a4a3f915d628c (diff) | |
download | ffmpeg-246f86a4d6cb456746fe64249cdd15e5da3bcfd7.tar.gz |
document the extradata protocol for VP6F
Originally committed as revision 6772 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vp6.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/vp6.c b/libavcodec/vp6.c index 6d5d46b0f0..139105de19 100644 --- a/libavcodec/vp6.c +++ b/libavcodec/vp6.c @@ -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> |