[FFmpeg-soc] [soc]: r4179 - in libavfilter: checkout.sh diffs/01_ffplay_filters.diff diffs/02_ffmpeg_filters.diff
stefano
subversion at mplayerhq.hu
Sun Mar 22 01:05:42 CET 2009
Author: stefano
Date: Sun Mar 22 01:05:42 2009
New Revision: 4179
Log:
Update to FFmpeg r18133.
Modified:
libavfilter/checkout.sh
libavfilter/diffs/01_ffplay_filters.diff
libavfilter/diffs/02_ffmpeg_filters.diff
Modified: libavfilter/checkout.sh
==============================================================================
--- libavfilter/checkout.sh Thu Mar 19 07:49:16 2009 (r4178)
+++ libavfilter/checkout.sh Sun Mar 22 01:05:42 2009 (r4179)
@@ -1,7 +1,7 @@
#! /bin/sh
echo "checking out pristine ffmpeg"
-svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk/ ffmpeg -r17792
+svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk/ ffmpeg -r18133
echo "patching ffmpeg"
for diff in $(ls $(pwd)/diffs/*.diff); do patch -d ffmpeg -p0 -i $diff; done
Modified: libavfilter/diffs/01_ffplay_filters.diff
==============================================================================
--- libavfilter/diffs/01_ffplay_filters.diff Thu Mar 19 07:49:16 2009 (r4178)
+++ libavfilter/diffs/01_ffplay_filters.diff Sun Mar 22 01:05:42 2009 (r4179)
@@ -1,6 +1,6 @@
Index: ffplay.c
===================================================================
---- ffplay.c (revision 17789)
+--- ffplay.c (revision 18133)
+++ ffplay.c (working copy)
@@ -29,6 +29,12 @@
#include "libavcodec/audioconvert.h"
@@ -38,7 +38,7 @@ Index: ffplay.c
} VideoPicture;
typedef struct SubPicture {
-@@ -172,6 +185,10 @@
+@@ -173,6 +186,10 @@
// QETimer *video_timer;
char filename[1024];
int width, height, xleft, ytop;
@@ -49,7 +49,7 @@ Index: ffplay.c
} VideoState;
static void show_help(void);
-@@ -212,6 +229,9 @@
+@@ -213,6 +230,9 @@
static int error_recognition = FF_ER_CAREFUL;
static int error_concealment = 3;
static int decoder_reorder_pts= 0;
@@ -59,7 +59,7 @@ Index: ffplay.c
/* current context */
static int is_full_screen;
-@@ -661,6 +681,13 @@
+@@ -662,6 +682,13 @@
vp = &is->pictq[is->pictq_rindex];
if (vp->bmp) {
@@ -73,7 +73,7 @@ Index: ffplay.c
/* XXX: use variable in the frame */
if (is->video_st->sample_aspect_ratio.num)
aspect_ratio = av_q2d(is->video_st->sample_aspect_ratio);
-@@ -668,9 +695,10 @@
+@@ -669,9 +696,10 @@
aspect_ratio = av_q2d(is->video_st->codec->sample_aspect_ratio);
else
aspect_ratio = 0;
@@ -85,7 +85,7 @@ Index: ffplay.c
/* if an active format is indicated, then it overrides the
mpeg format */
#if 0
-@@ -873,9 +901,15 @@
+@@ -874,9 +902,15 @@
} else if(!is_full_screen && screen_width){
w = screen_width;
h = screen_height;
@@ -101,7 +101,7 @@ Index: ffplay.c
} else {
w = 640;
h = 480;
-@@ -1188,6 +1222,20 @@
+@@ -1189,6 +1223,20 @@
if (vp->bmp)
SDL_FreeYUVOverlay(vp->bmp);
@@ -122,7 +122,7 @@ Index: ffplay.c
#if 0
/* XXX: use generic function */
/* XXX: disable overlay if no hardware acceleration or if RGB format */
-@@ -1205,12 +1253,9 @@
+@@ -1206,12 +1254,9 @@
break;
}
#endif
@@ -136,7 +136,7 @@ Index: ffplay.c
SDL_LockMutex(is->pictq_mutex);
vp->allocated = 1;
-@@ -1227,8 +1272,11 @@
+@@ -1228,8 +1273,11 @@
VideoPicture *vp;
int dst_pix_fmt;
AVPicture pict;
@@ -149,7 +149,7 @@ Index: ffplay.c
/* wait until we have space to put a new picture */
SDL_LockMutex(is->pictq_mutex);
while (is->pictq_size >= VIDEO_PICTURE_QUEUE_SIZE &&
-@@ -1244,8 +1292,13 @@
+@@ -1245,8 +1293,13 @@
/* alloc or resize hardware picture buffer */
if (!vp->bmp ||
@@ -163,7 +163,7 @@ Index: ffplay.c
SDL_Event event;
vp->allocated = 0;
-@@ -1269,6 +1322,12 @@
+@@ -1270,6 +1323,12 @@
/* if the frame is not skipped, then display it */
if (vp->bmp) {
@@ -176,7 +176,7 @@ Index: ffplay.c
/* get a pointer on the bitmap */
SDL_LockYUVOverlay (vp->bmp);
-@@ -1280,18 +1339,30 @@
+@@ -1281,18 +1340,30 @@
pict.linesize[0] = vp->bmp->pitches[0];
pict.linesize[1] = vp->bmp->pitches[2];
pict.linesize[2] = vp->bmp->pitches[1];
@@ -211,7 +211,7 @@ Index: ffplay.c
/* update the bitmap content */
SDL_UnlockYUVOverlay(vp->bmp);
-@@ -1346,54 +1417,267 @@
+@@ -1347,54 +1418,267 @@
return queue_picture(is, src_frame, pts);
}
@@ -510,7 +510,7 @@ Index: ffplay.c
av_free(frame);
return 0;
}
-@@ -2175,6 +2459,12 @@
+@@ -2171,6 +2455,12 @@
/* free all pictures */
for(i=0;i<VIDEO_PICTURE_QUEUE_SIZE; i++) {
vp = &is->pictq[i];
@@ -523,7 +523,7 @@ Index: ffplay.c
if (vp->bmp) {
SDL_FreeYUVOverlay(vp->bmp);
vp->bmp = NULL;
-@@ -2513,6 +2803,9 @@
+@@ -2509,6 +2799,9 @@
{ "ec", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&error_concealment}, "set error concealment options", "bit_mask" },
{ "sync", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_sync}, "set audio-video sync. type (type=audio/video/ext)", "type" },
{ "threads", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_thread_count}, "thread count", "count" },
@@ -533,7 +533,7 @@ Index: ffplay.c
{ "default", OPT_FUNC2 | HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {(void*)opt_default}, "generic catch all option", "" },
{ NULL, },
};
-@@ -2561,7 +2854,9 @@
+@@ -2557,7 +2850,9 @@
avcodec_opts[i]= avcodec_alloc_context2(i);
}
avformat_opts = avformat_alloc_context();
Modified: libavfilter/diffs/02_ffmpeg_filters.diff
==============================================================================
--- libavfilter/diffs/02_ffmpeg_filters.diff Thu Mar 19 07:49:16 2009 (r4178)
+++ libavfilter/diffs/02_ffmpeg_filters.diff Sun Mar 22 01:05:42 2009 (r4179)
@@ -1,6 +1,6 @@
Index: ffmpeg.c
===================================================================
---- ffmpeg.c (revision 17789)
+--- ffmpeg.c (revision 18133)
+++ ffmpeg.c (working copy)
@@ -40,6 +40,13 @@
#include "libavutil/avstring.h"
@@ -26,7 +26,7 @@ Index: ffmpeg.c
static int intra_only = 0;
static int audio_sample_rate = 44100;
-@@ -280,6 +290,13 @@
+@@ -281,6 +291,13 @@
is not defined */
int64_t pts; /* current pts */
int is_start; /* is 1 at the start and after a discontinuity */
@@ -40,7 +40,7 @@ Index: ffmpeg.c
} AVInputStream;
typedef struct AVInputFile {
-@@ -295,6 +312,183 @@
+@@ -296,6 +313,183 @@
static struct termios oldtty;
#endif
@@ -224,7 +224,7 @@ Index: ffmpeg.c
static void term_exit(void)
{
#if HAVE_TERMIOS_H
-@@ -879,6 +1073,9 @@
+@@ -880,6 +1074,9 @@
if (nb_frames <= 0)
return;
@@ -234,7 +234,7 @@ Index: ffmpeg.c
if (ost->video_crop) {
if (av_picture_crop((AVPicture *)&picture_crop_temp, (AVPicture *)in_picture, dec->pix_fmt, ost->topBand, ost->leftBand) < 0) {
fprintf(stderr, "error cropping picture\n");
-@@ -890,6 +1087,7 @@
+@@ -891,6 +1088,7 @@
} else {
formatted_picture = in_picture;
}
@@ -242,7 +242,7 @@ Index: ffmpeg.c
final_picture = formatted_picture;
padding_src = formatted_picture;
-@@ -907,12 +1105,14 @@
+@@ -908,12 +1106,14 @@
}
}
@@ -257,7 +257,7 @@ Index: ffmpeg.c
if (ost->video_pad) {
av_picture_pad((AVPicture*)final_picture, (AVPicture *)padding_src,
-@@ -1183,6 +1383,9 @@
+@@ -1184,6 +1384,9 @@
static short *samples= NULL;
AVSubtitle subtitle, *subtitle_to_free;
int got_subtitle;
@@ -267,7 +267,7 @@ Index: ffmpeg.c
if(ist->next_pts == AV_NOPTS_VALUE)
ist->next_pts= ist->pts;
-@@ -1302,6 +1505,15 @@
+@@ -1303,6 +1506,15 @@
&buffer_to_free);
}
@@ -283,7 +283,7 @@ Index: ffmpeg.c
// preprocess audio (volume)
if (ist->st->codec->codec_type == CODEC_TYPE_AUDIO) {
if (audio_volume != 256) {
-@@ -1323,10 +1535,18 @@
+@@ -1324,10 +1536,18 @@
if (pts > now)
usleep(pts - now);
}
@@ -303,7 +303,7 @@ Index: ffmpeg.c
for(i=0;i<nb_ostreams;i++) {
int frame_size;
-@@ -1349,6 +1569,9 @@
+@@ -1350,6 +1570,9 @@
do_audio_out(os, ost, ist, data_buf, data_size);
break;
case CODEC_TYPE_VIDEO:
@@ -313,7 +313,7 @@ Index: ffmpeg.c
do_video_out(os, ost, ist, &picture, &frame_size);
if (vstats_filename && frame_size)
do_video_stats(os, ost, frame_size);
-@@ -1406,7 +1629,17 @@
+@@ -1407,7 +1630,17 @@
av_free_packet(&opkt);
}
}
@@ -331,7 +331,7 @@ Index: ffmpeg.c
av_free(buffer_to_free);
/* XXX: allocate the subtitles in the codec ? */
if (subtitle_to_free) {
-@@ -1837,10 +2070,21 @@
+@@ -1840,10 +2073,21 @@
fprintf(stderr, "Cannot get resampling context\n");
av_exit(1);
}
@@ -353,7 +353,7 @@ Index: ffmpeg.c
break;
case CODEC_TYPE_SUBTITLE:
ost->encoding_needed = 1;
-@@ -3825,6 +4069,9 @@
+@@ -3860,6 +4104,9 @@
{ "psnr", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&do_psnr}, "calculate PSNR of compressed frames" },
{ "vstats", OPT_EXPERT | OPT_VIDEO, {(void*)&opt_vstats}, "dump video coding statistics to file" },
{ "vstats_file", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_vstats_file}, "dump video coding statistics to file", "file" },
More information about the FFmpeg-soc
mailing list