Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-08-07 18:53:31 +0400
committerDiego Biurrun <diego@biurrun.de>2009-08-07 18:53:31 +0400
commit966116b9f73a27cf2cb5692cf1bc326bc0bf2ceb (patch)
treeec0fa1fd1d8fbb42ff60439fb5448b5b0e46f118
parent547d205545dbbeec18708b74937ffc644b65003e (diff)
Remove some hunks of unused and disabled code cruft.
Originally committed as revision 19606 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--ffmpeg.c33
-rw-r--r--ffplay.c17
-rw-r--r--tests/videogen.c5
3 files changed, 0 insertions, 55 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index e8991808a1..e5512c2880 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -130,11 +130,6 @@ static AVRational frame_rate;
static float video_qscale = 0;
static uint16_t *intra_matrix = NULL;
static uint16_t *inter_matrix = NULL;
-#if 0 //experimental, (can be removed)
-static float video_rc_qsquish=1.0;
-static float video_rc_qmod_amp=0;
-static int video_rc_qmod_freq=0;
-#endif
static const char *video_rc_override_string=NULL;
static int video_disable = 0;
static int video_discard = 0;
@@ -1401,12 +1396,6 @@ static int output_packet(AVInputStream *ist, int ist_index,
if (ost->source_index == ist_index) {
os = output_files[ost->file_index];
-#if 0
- printf("%d: got pts=%0.3f %0.3f\n", i,
- (double)pkt->pts / AV_TIME_BASE,
- ((double)ist->pts / AV_TIME_BASE) -
- ((double)ost->st->pts.val * ost->st->time_base.num / ost->st->time_base.den));
-#endif
/* set the input output pts pairs */
//ost->sync_ipts = (double)(ist->pts + input_files_ts_offset[ist->file_index] - start_time)/ AV_TIME_BASE;
@@ -2371,28 +2360,6 @@ static int av_encode(AVFormatContext **output_files,
return ret;
}
-#if 0
-int file_read(const char *filename)
-{
- URLContext *h;
- unsigned char buffer[1024];
- int len, i;
-
- if (url_open(&h, filename, O_RDONLY) < 0) {
- printf("could not open '%s'\n", filename);
- return -1;
- }
- for(;;) {
- len = url_read(h, buffer, sizeof(buffer));
- if (len <= 0)
- break;
- for(i=0;i<len;i++) putchar(buffer[i]);
- }
- url_close(h);
- return 0;
-}
-#endif
-
static void opt_format(const char *arg)
{
/* compatibility stuff for pgmyuv */
diff --git a/ffplay.c b/ffplay.c
index c976ac5841..6077e6c050 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1171,23 +1171,6 @@ static void alloc_picture(void *opaque)
if (vp->bmp)
SDL_FreeYUVOverlay(vp->bmp);
-#if 0
- /* XXX: use generic function */
- /* XXX: disable overlay if no hardware acceleration or if RGB format */
- switch(is->video_st->codec->pix_fmt) {
- case PIX_FMT_YUV420P:
- case PIX_FMT_YUV422P:
- case PIX_FMT_YUV444P:
- case PIX_FMT_YUYV422:
- case PIX_FMT_YUV410P:
- case PIX_FMT_YUV411P:
- is_yuv = 1;
- break;
- default:
- is_yuv = 0;
- break;
- }
-#endif
vp->bmp = SDL_CreateYUVOverlay(is->video_st->codec->width,
is->video_st->codec->height,
SDL_YV12_OVERLAY,
diff --git a/tests/videogen.c b/tests/videogen.c
index 5990dd7d48..4238e3f862 100644
--- a/tests/videogen.c
+++ b/tests/videogen.c
@@ -273,11 +273,6 @@ int main(int argc, char **argv)
exit(1);
}
-#if 0
- for(i=0;i<256;i++)
- printf("cos(%d)=%d\n", i, int_cos(i));
-#endif
-
w = DEFAULT_WIDTH;
h = DEFAULT_HEIGHT;