diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-11 13:58:29 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-11 14:03:12 +0200 |
commit | de31814ab07fd971d24c66a5e1ecf464b7ebe033 (patch) | |
tree | 42c68ea4d18cdfbac8051772d9853ac7d50b2f7b /libavcodec/svq1.h | |
parent | c4aaff8c02cecfe42b730cb922521e4b9f26df30 (diff) | |
parent | b522000e9b2ca36fe5b2751096b9a5f5ed8f87e6 (diff) | |
download | ffmpeg-de31814ab07fd971d24c66a5e1ecf464b7ebe033.tar.gz |
Merge commit 'b522000e9b2ca36fe5b2751096b9a5f5ed8f87e6'
* commit 'b522000e9b2ca36fe5b2751096b9a5f5ed8f87e6':
avio: introduce avio_closep
mpegtsenc: set muxing type notification to verbose
vc1dec: Use correct spelling of "opposite"
a64multienc: change mc_frame_counter to unsigned
arm: call arm-specific rv34dsp init functions under if (ARCH_ARM)
svq1: Drop a bunch of useless parentheses
parseutils-test: do not print numerical error codes
svq1: K&R formatting cosmetics
Conflicts:
doc/APIchanges
libavcodec/svq1dec.c
libavcodec/svq1enc.c
libavformat/version.h
libavutil/parseutils.c
tests/ref/fate/parseutils
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/svq1.h')
-rw-r--r-- | libavcodec/svq1.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/svq1.h b/libavcodec/svq1.h index 3ade05d848..9b132e2320 100644 --- a/libavcodec/svq1.h +++ b/libavcodec/svq1.h @@ -47,11 +47,11 @@ struct svq1_frame_size { uint16_t height; }; -uint16_t ff_svq1_packet_checksum (const uint8_t *data, const int length, - int value); +uint16_t ff_svq1_packet_checksum(const uint8_t *data, + const int length, int value); -extern const int8_t* const ff_svq1_inter_codebooks[6]; -extern const int8_t* const ff_svq1_intra_codebooks[6]; +extern const int8_t *const ff_svq1_inter_codebooks[6]; +extern const int8_t *const ff_svq1_intra_codebooks[6]; extern const uint8_t ff_svq1_block_type_vlc[4][2]; extern const uint8_t ff_svq1_intra_multistage_vlc[6][8][2]; |