Browse Source

Merge commit 'd46c588f3cb1963a00e990ceaf4ba9ffa05a716d'

* commit 'd46c588f3cb1963a00e990ceaf4ba9ffa05a716d':
  Remove commented-out #includes
  h263dec: Remove broken and disabled debug cruft
  vc1: Reindent INIT_LUT(), align backslashes

Conflicts:
	libavcodec/vc1.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer 12 years ago
parent
commit
4390fa6273
4 changed files with 21 additions and 33 deletions
  1. +0
    -8
      libavcodec/h263dec.c
  2. +21
    -21
      libavcodec/vc1.c
  3. +0
    -3
      libavformat/nut.h
  4. +0
    -1
      libavutil/rational.c

+ 0
- 8
libavcodec/h263dec.c View File

@@ -42,7 +42,6 @@
#include "mpeg4video.h" #include "mpeg4video.h"


//#define DEBUG //#define DEBUG
//#define PRINT_FRAME_TIME


av_cold int ff_h263_decode_init(AVCodecContext *avctx) av_cold int ff_h263_decode_init(AVCodecContext *avctx)
{ {
@@ -355,9 +354,6 @@ int ff_h263_decode_frame(AVCodecContext *avctx,
int ret; int ret;
AVFrame *pict = data; AVFrame *pict = data;


#ifdef PRINT_FRAME_TIME
uint64_t time= rdtsc();
#endif
s->flags= avctx->flags; s->flags= avctx->flags;
s->flags2= avctx->flags2; s->flags2= avctx->flags2;


@@ -766,10 +762,6 @@ intrax8_decoded:
*got_frame = 1; *got_frame = 1;
} }


#ifdef PRINT_FRAME_TIME
av_log(avctx, AV_LOG_DEBUG, "%"PRId64"\n", rdtsc()-time);
#endif

return (ret && (avctx->err_recognition & AV_EF_EXPLODE))?ret:get_consumed_bytes(s, buf_size); return (ret && (avctx->err_recognition & AV_EF_EXPLODE))?ret:get_consumed_bytes(s, buf_size);
} }




+ 21
- 21
libavcodec/vc1.c View File

@@ -578,27 +578,27 @@ int ff_vc1_decode_entry_point(AVCodecContext *avctx, VC1Context *v, GetBitContex
} }


/* fill lookup tables for intensity compensation */ /* fill lookup tables for intensity compensation */
#define INIT_LUT(lumscale, lumshift, luty, lutuv, chain) do {\
int scale, shift, i; \
if (!lumscale) { \
scale = -64; \
shift = (255 - lumshift * 2) << 6; \
if (lumshift > 31) \
shift += 128 << 6; \
} else { \
scale = lumscale + 32; \
if (lumshift > 31) \
shift = (lumshift - 64) << 6; \
else \
shift = lumshift << 6; \
} \
for (i = 0; i < 256; i++) { \
int iy = chain ? luty[i] : i; \
int iu = chain ? lutuv[i] : i; \
luty[i] = av_clip_uint8((scale * iy + shift + 32) >> 6); \
lutuv[i] = av_clip_uint8((scale * (iu - 128) + 128*64 + 32) >> 6); \
} \
}while(0)
#define INIT_LUT(lumscale, lumshift, luty, lutuv, chain) do { \
int scale, shift, i; \
if (!lumscale) { \
scale = -64; \
shift = (255 - lumshift * 2) << 6; \
if (lumshift > 31) \
shift += 128 << 6; \
} else { \
scale = lumscale + 32; \
if (lumshift > 31) \
shift = (lumshift - 64) << 6; \
else \
shift = lumshift << 6; \
} \
for (i = 0; i < 256; i++) { \
int iy = chain ? luty[i] : i; \
int iu = chain ? lutuv[i] : i; \
luty[i] = av_clip_uint8((scale * iy + shift + 32) >> 6); \
lutuv[i] = av_clip_uint8((scale * (iu - 128) + 128*64 + 32) >> 6);\
} \
} while(0)




static void rotate_luts(VC1Context *v) static void rotate_luts(VC1Context *v)


+ 0
- 3
libavformat/nut.h View File

@@ -22,9 +22,6 @@
#ifndef AVFORMAT_NUT_H #ifndef AVFORMAT_NUT_H
#define AVFORMAT_NUT_H #define AVFORMAT_NUT_H


//#include <limits.h>
//#include "libavutil/adler32.h"
//#include "libavcodec/mpegaudio.h"
#include "avformat.h" #include "avformat.h"
#include "internal.h" #include "internal.h"
#include "metadata.h" #include "metadata.h"


+ 0
- 1
libavutil/rational.c View File

@@ -26,7 +26,6 @@
*/ */


#include "avassert.h" #include "avassert.h"
//#include <math.h>
#include <limits.h> #include <limits.h>


#include "common.h" #include "common.h"


Loading…
Cancel
Save