mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
add multiple inclusion guards
Originally committed as revision 10986 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
cb0d8a5f8f
commit
49e9a4bf7c
@ -16,6 +16,9 @@
|
|||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef FFMPEG_INTRAX8_H
|
||||||
|
#define FFMPEG_INTRAX8_H
|
||||||
|
|
||||||
typedef struct{
|
typedef struct{
|
||||||
VLC * j_ac_vlc[4];//they point to the static j_mb_vlc
|
VLC * j_ac_vlc[4];//they point to the static j_mb_vlc
|
||||||
VLC * j_orient_vlc;
|
VLC * j_orient_vlc;
|
||||||
@ -46,3 +49,5 @@ typedef struct{
|
|||||||
|
|
||||||
void ff_intrax8_common_init(IntraX8Context * w, MpegEncContext * const s);
|
void ff_intrax8_common_init(IntraX8Context * w, MpegEncContext * const s);
|
||||||
int ff_intrax8_decode_picture(IntraX8Context * w, int quant, int halfpq);
|
int ff_intrax8_decode_picture(IntraX8Context * w, int quant, int halfpq);
|
||||||
|
|
||||||
|
#endif /* FFMPEG_INTRAX8_H */
|
||||||
|
@ -16,6 +16,9 @@
|
|||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef FFMPEG_INTRAX8HUF_H
|
||||||
|
#define FFMPEG_INTRAX8HUF_H
|
||||||
|
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
|
||||||
|
|
||||||
@ -911,3 +914,5 @@ const uint16_t ff_x8_ac1_highquant_table[8][77][2]={
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
#define MAX_AC_VLC_BITS 16
|
#define MAX_AC_VLC_BITS 16
|
||||||
|
|
||||||
|
#endif /* FFMPEG_INTRAX8HUF_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user