|
|
|
@ -1,13 +1,6 @@ |
|
|
|
|
/**
|
|
|
|
|
* @file |
|
|
|
|
* VP6 compatible video decoder |
|
|
|
|
* |
|
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org> |
|
|
|
|
* |
|
|
|
|
* The VP6F decoder accepts 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 |
|
|
|
|
* |
|
|
|
|
* This file is part of Libav. |
|
|
|
|
* |
|
|
|
|
* Libav is free software; you can redistribute it and/or |
|
|
|
@ -25,6 +18,15 @@ |
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @file |
|
|
|
|
* VP6 compatible video decoder |
|
|
|
|
* |
|
|
|
|
* The VP6F decoder accepts an optional 1 byte extradata. It is composed of: |
|
|
|
|
* - upper 4 bits: difference between encoded width and visible width |
|
|
|
|
* - lower 4 bits: difference between encoded height and visible height |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
#include <stdlib.h> |
|
|
|
|
|
|
|
|
|
#include "avcodec.h" |
|
|
|
|