comparison rtjpeg.c @ 6574:be4783347fbe libavcodec

Fix reference to a file in MPlayer that was renamed.
author diego
date Tue, 08 Apr 2008 15:16:48 +0000
parents c8ec0c985df8
children f7cbb7733146
comparison
equal deleted inserted replaced
6573:43d2d2f27f92 6574:be4783347fbe
39 * \param scan array containing the mapping stream address -> block position 39 * \param scan array containing the mapping stream address -> block position
40 * \param quant quantization factors 40 * \param quant quantization factors
41 * 41 *
42 * Note: GetBitContext is used to make the code simpler, since all data is 42 * Note: GetBitContext is used to make the code simpler, since all data is
43 * aligned this could be done faster in a different way, e.g. as it is done 43 * aligned this could be done faster in a different way, e.g. as it is done
44 * in MPlayer libmpcodecs/native/RTjpegN.c 44 * in MPlayer libmpcodecs/native/rtjpegn.c.
45 */ 45 */
46 static inline int get_block(GetBitContext *gb, DCTELEM *block, const uint8_t *scan, 46 static inline int get_block(GetBitContext *gb, DCTELEM *block, const uint8_t *scan,
47 const uint32_t *quant) { 47 const uint32_t *quant) {
48 int coeff, i, n; 48 int coeff, i, n;
49 int8_t ac; 49 int8_t ac;