Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
2a615925
Commit
2a615925
authored
Aug 20, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: Remove some commented-out debug cruft
parent
6c786765
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
0 additions
and
11 deletions
+0
-11
h264.c
libavcodec/h264.c
+0
-1
h264_cabac.c
libavcodec/h264_cabac.c
+0
-1
h264_cavlc.c
libavcodec/h264_cavlc.c
+0
-1
h264_direct.c
libavcodec/h264_direct.c
+0
-1
h264_loopfilter.c
libavcodec/h264_loopfilter.c
+0
-1
h264_mvpred.h
libavcodec/h264_mvpred.h
+0
-1
h264_ps.c
libavcodec/h264_ps.c
+0
-1
h264_refs.c
libavcodec/h264_refs.c
+0
-1
h264_sei.c
libavcodec/h264_sei.c
+0
-1
mjpegdec.c
libavcodec/mjpegdec.c
+0
-1
mjpegenc.c
libavcodec/mjpegenc.c
+0
-1
No files found.
libavcodec/h264.c
View file @
2a615925
...
...
@@ -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
};
...
...
libavcodec/h264_cabac.c
View file @
2a615925
...
...
@@ -41,7 +41,6 @@
#include "x86/h264_i386.h"
#endif
//#undef NDEBUG
#include <assert.h>
/* Cabac pre state table */
...
...
libavcodec/h264_cavlc.c
View file @
2a615925
...
...
@@ -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
]
=
{
...
...
libavcodec/h264_direct.c
View file @
2a615925
...
...
@@ -32,7 +32,6 @@
#include "rectangle.h"
#include "thread.h"
//#undef NDEBUG
#include <assert.h>
...
...
libavcodec/h264_loopfilter.c
View file @
2a615925
...
...
@@ -34,7 +34,6 @@
#include "mathops.h"
#include "rectangle.h"
//#undef NDEBUG
#include <assert.h>
/* Deblocking filter (p153) */
...
...
libavcodec/h264_mvpred.h
View file @
2a615925
...
...
@@ -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
,
...
...
libavcodec/h264_ps.c
View file @
2a615925
...
...
@@ -33,7 +33,6 @@
#include "golomb.h"
//#undef NDEBUG
#include <assert.h>
#define MAX_LOG2_MAX_FRAME_NUM (12 + 4)
...
...
libavcodec/h264_refs.c
View file @
2a615925
...
...
@@ -30,7 +30,6 @@
#include "h264.h"
#include "golomb.h"
//#undef NDEBUG
#include <assert.h>
#define COPY_PICTURE(dst, src) \
...
...
libavcodec/h264_sei.c
View file @
2a615925
...
...
@@ -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
]
=
{
...
...
libavcodec/mjpegdec.c
View file @
2a615925
...
...
@@ -30,7 +30,6 @@
* MJPEG decoder.
*/
// #define DEBUG
#include <assert.h>
#include "libavutil/imgutils.h"
...
...
libavcodec/mjpegenc.c
View file @
2a615925
...
...
@@ -30,7 +30,6 @@
* MJPEG encoder.
*/
//#define DEBUG
#include <assert.h>
#include "avcodec.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment