Browse Source

avcodec: Remove some commented-out debug cruft

tags/n2.1
Diego Biurrun 12 years ago
parent
commit
2a61592573
11 changed files with 0 additions and 11 deletions
  1. +0
    -1
      libavcodec/h264.c
  2. +0
    -1
      libavcodec/h264_cabac.c
  3. +0
    -1
      libavcodec/h264_cavlc.c
  4. +0
    -1
      libavcodec/h264_direct.c
  5. +0
    -1
      libavcodec/h264_loopfilter.c
  6. +0
    -1
      libavcodec/h264_mvpred.h
  7. +0
    -1
      libavcodec/h264_ps.c
  8. +0
    -1
      libavcodec/h264_refs.c
  9. +0
    -1
      libavcodec/h264_sei.c
  10. +0
    -1
      libavcodec/mjpegdec.c
  11. +0
    -1
      libavcodec/mjpegenc.c

+ 0
- 1
libavcodec/h264.c View File

@@ -44,7 +44,6 @@
#include "svq3.h"
#include "thread.h"

// #undef NDEBUG
#include <assert.h>

const uint16_t ff_h264_mb_sizes[4] = { 256, 384, 512, 768 };


+ 0
- 1
libavcodec/h264_cabac.c View File

@@ -41,7 +41,6 @@
#include "x86/h264_i386.h"
#endif

//#undef NDEBUG
#include <assert.h>

/* Cabac pre state table */


+ 0
- 1
libavcodec/h264_cavlc.c View File

@@ -35,7 +35,6 @@
#include "h264_mvpred.h"
#include "golomb.h"

//#undef NDEBUG
#include <assert.h>

static const uint8_t golomb_to_inter_cbp_gray[16]={


+ 0
- 1
libavcodec/h264_direct.c View File

@@ -32,7 +32,6 @@
#include "rectangle.h"
#include "thread.h"

//#undef NDEBUG
#include <assert.h>




+ 0
- 1
libavcodec/h264_loopfilter.c View File

@@ -34,7 +34,6 @@
#include "mathops.h"
#include "rectangle.h"

//#undef NDEBUG
#include <assert.h>

/* Deblocking filter (p153) */


+ 0
- 1
libavcodec/h264_mvpred.h View File

@@ -32,7 +32,6 @@
#include "avcodec.h"
#include "h264.h"

//#undef NDEBUG
#include <assert.h>

static av_always_inline int fetch_diagonal_mv(H264Context *h, const int16_t **C,


+ 0
- 1
libavcodec/h264_ps.c View File

@@ -33,7 +33,6 @@
#include "golomb.h"


//#undef NDEBUG
#include <assert.h>

#define MAX_LOG2_MAX_FRAME_NUM (12 + 4)


+ 0
- 1
libavcodec/h264_refs.c View File

@@ -30,7 +30,6 @@
#include "h264.h"
#include "golomb.h"

//#undef NDEBUG
#include <assert.h>

#define COPY_PICTURE(dst, src) \


+ 0
- 1
libavcodec/h264_sei.c View File

@@ -30,7 +30,6 @@
#include "h264.h"
#include "golomb.h"

//#undef NDEBUG
#include <assert.h>

static const uint8_t sei_num_clock_ts_table[9] = {


+ 0
- 1
libavcodec/mjpegdec.c View File

@@ -30,7 +30,6 @@
* MJPEG decoder.
*/

// #define DEBUG
#include <assert.h>

#include "libavutil/imgutils.h"


+ 0
- 1
libavcodec/mjpegenc.c View File

@@ -30,7 +30,6 @@
* MJPEG encoder.
*/

//#define DEBUG
#include <assert.h>

#include "avcodec.h"


Loading…
Cancel
Save