[FFmpeg-soc] [soc]: r1900 - in libavfilter: avfilter.h avfiltergraph.c diffs/04_ffmpeg_filters.diff vf_crop.c vf_fifo.c vf_format.c vf_fps.c vf_hflip.c vf_negate.c vf_overlay.c vf_rotate.c vf_scale.c vf_setpts.c vf_slicify.c vf_split.c vf_transpose.c vf_vflip.c vsrc_movie.c
vitor
subversion at mplayerhq.hu
Mon Feb 11 20:56:27 CET 2008
Author: vitor
Date: Mon Feb 11 20:56:27 2008
New Revision: 1900
Log:
Remove author field
Modified:
libavfilter/avfilter.h
libavfilter/avfiltergraph.c
libavfilter/diffs/04_ffmpeg_filters.diff
libavfilter/vf_crop.c
libavfilter/vf_fifo.c
libavfilter/vf_format.c
libavfilter/vf_fps.c
libavfilter/vf_hflip.c
libavfilter/vf_negate.c
libavfilter/vf_overlay.c
libavfilter/vf_rotate.c
libavfilter/vf_scale.c
libavfilter/vf_setpts.c
libavfilter/vf_slicify.c
libavfilter/vf_split.c
libavfilter/vf_transpose.c
libavfilter/vf_vflip.c
libavfilter/vsrc_movie.c
Modified: libavfilter/avfilter.h
==============================================================================
--- libavfilter/avfilter.h (original)
+++ libavfilter/avfilter.h Mon Feb 11 20:56:27 2008
@@ -322,7 +322,6 @@ void avfilter_formats_changeref(AVFilter
typedef struct
{
const char *name; ///< filter name
- const char *author; ///< filter author
int priv_size; ///< size of private data to allocate for the filter
Modified: libavfilter/avfiltergraph.c
==============================================================================
--- libavfilter/avfiltergraph.c (original)
+++ libavfilter/avfiltergraph.c Mon Feb 11 20:56:27 2008
@@ -156,7 +156,6 @@ static void link_out_draw_slice(AVFilter
static AVFilter vf_graph_dummy =
{
.name = "graph_dummy",
- .author = "Bobby Bingham",
.priv_size = sizeof(GraphLinkContext),
@@ -593,7 +592,6 @@ fail:
AVFilter avfilter_vf_graph =
{
.name = "graph",
- .author = "Bobby Bingham",
.priv_size = sizeof(GraphContext),
@@ -634,7 +632,6 @@ fail:
AVFilter avfilter_vf_graphdesc =
{
.name = "graph_desc",
- .author = "Bobby Bingham",
.priv_size = sizeof(GraphContext),
@@ -665,7 +662,6 @@ static int init_file(AVFilterContext *ct
AVFilter avfilter_vf_graphfile =
{
.name = "graph_file",
- .author = "Bobby Bingham",
.priv_size = sizeof(GraphContext),
Modified: libavfilter/diffs/04_ffmpeg_filters.diff
==============================================================================
--- libavfilter/diffs/04_ffmpeg_filters.diff (original)
+++ libavfilter/diffs/04_ffmpeg_filters.diff Mon Feb 11 20:56:27 2008
@@ -38,7 +38,7 @@ Index: ffmpeg.c
} AVInputStream;
typedef struct AVInputFile {
-@@ -292,6 +307,271 @@
+@@ -292,6 +307,269 @@
static struct termios oldtty;
#endif
@@ -121,7 +121,6 @@ Index: ffmpeg.c
+static AVFilter input_filter =
+{
+ .name = "ffmpeg_input",
-+ .author = "Vitor Sessak",
+
+ .priv_size = sizeof(FilterInPriv),
+
@@ -191,7 +190,6 @@ Index: ffmpeg.c
+static AVFilter output_filter =
+{
+ .name = "ffmpeg_output",
-+ .author = "Vitor Sessak",
+
+ .priv_size = sizeof(FilterOutPriv),
+ .init = output_init,
@@ -310,7 +308,7 @@ Index: ffmpeg.c
static void term_exit(void)
{
#ifdef HAVE_TERMIOS_H
-@@ -752,6 +1032,9 @@
+@@ -752,6 +1030,9 @@
if (nb_frames <= 0)
return;
@@ -320,7 +318,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) {
av_log(NULL, AV_LOG_ERROR, "error cropping picture\n");
-@@ -761,6 +1044,7 @@
+@@ -761,6 +1042,7 @@
} else {
formatted_picture = in_picture;
}
@@ -328,7 +326,7 @@ Index: ffmpeg.c
final_picture = formatted_picture;
padding_src = formatted_picture;
-@@ -776,12 +1060,14 @@
+@@ -776,12 +1058,14 @@
}
}
@@ -343,7 +341,7 @@ Index: ffmpeg.c
if (ost->video_pad) {
av_picture_pad((AVPicture*)final_picture, (AVPicture *)padding_src,
-@@ -1161,6 +1447,17 @@
+@@ -1161,6 +1445,17 @@
&buffer_to_free);
}
@@ -361,7 +359,7 @@ Index: ffmpeg.c
// preprocess audio (volume)
if (ist->st->codec->codec_type == CODEC_TYPE_AUDIO) {
if (audio_volume != 256) {
-@@ -1223,10 +1520,23 @@
+@@ -1223,10 +1518,23 @@
do_audio_out(os, ost, ist, data_buf, data_size);
break;
case CODEC_TYPE_VIDEO:
@@ -385,7 +383,7 @@ Index: ffmpeg.c
break;
case CODEC_TYPE_SUBTITLE:
do_subtitle_out(os, ost, ist, &subtitle,
-@@ -1687,10 +1997,21 @@
+@@ -1687,10 +1995,21 @@
fprintf(stderr, "Cannot get resampling context\n");
exit(1);
}
@@ -407,7 +405,7 @@ Index: ffmpeg.c
break;
case CODEC_TYPE_SUBTITLE:
ost->encoding_needed = 1;
-@@ -3803,6 +4124,9 @@
+@@ -3803,6 +4122,9 @@
#ifdef CONFIG_VHOOK
{ "vhook", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)add_frame_hooker}, "insert video processing module", "module" },
#endif
Modified: libavfilter/vf_crop.c
==============================================================================
--- libavfilter/vf_crop.c (original)
+++ libavfilter/vf_crop.c Mon Feb 11 20:56:27 2008
@@ -142,7 +142,6 @@ static void draw_slice(AVFilterLink *lin
AVFilter avfilter_vf_crop =
{
.name = "crop",
- .author = "Bobby Bingham",
.priv_size = sizeof(CropContext),
.init = init,
Modified: libavfilter/vf_fifo.c
==============================================================================
--- libavfilter/vf_fifo.c (original)
+++ libavfilter/vf_fifo.c Mon Feb 11 20:56:27 2008
@@ -99,7 +99,6 @@ static int request_frame(AVFilterLink *l
AVFilter avfilter_vf_fifo =
{
.name = "fifo",
- .author = "Bobby Bingham",
.init = init,
.uninit = uninit,
Modified: libavfilter/vf_format.c
==============================================================================
--- libavfilter/vf_format.c (original)
+++ libavfilter/vf_format.c Mon Feb 11 20:56:27 2008
@@ -109,7 +109,6 @@ static void draw_slice(AVFilterLink *lin
AVFilter avfilter_vf_noformat =
{
.name = "noformat",
- .author = "Bobby Bingham",
.init = init,
@@ -131,7 +130,6 @@ AVFilter avfilter_vf_noformat =
AVFilter avfilter_vf_format =
{
.name = "format",
- .author = "Bobby Bingham",
.init = init,
Modified: libavfilter/vf_fps.c
==============================================================================
--- libavfilter/vf_fps.c (original)
+++ libavfilter/vf_fps.c Mon Feb 11 20:56:27 2008
@@ -112,7 +112,6 @@ static int request_frame(AVFilterLink *l
AVFilter avfilter_vf_fps =
{
.name = "fps",
- .author = "Bobby Bingham",
.init = init,
.uninit = uninit,
Modified: libavfilter/vf_hflip.c
==============================================================================
--- libavfilter/vf_hflip.c (original)
+++ libavfilter/vf_hflip.c Mon Feb 11 20:56:27 2008
@@ -76,7 +76,6 @@ static void draw_slice(AVFilterLink *lin
AVFilter avfilter_vf_hflip =
{
.name = "hflip",
- .author = "Benoit Fouet",
.priv_size = sizeof(FlipContext),
.inputs = (AVFilterPad[]) {{ .name = "default",
Modified: libavfilter/vf_negate.c
==============================================================================
--- libavfilter/vf_negate.c (original)
+++ libavfilter/vf_negate.c Mon Feb 11 20:56:27 2008
@@ -97,7 +97,6 @@ static void draw_slice(AVFilterLink *lin
AVFilter avfilter_vf_negate =
{
.name = "negate",
- .author = "Bobby Bingham",
.priv_size = sizeof(NegContext),
Modified: libavfilter/vf_overlay.c
==============================================================================
--- libavfilter/vf_overlay.c (original)
+++ libavfilter/vf_overlay.c Mon Feb 11 20:56:27 2008
@@ -183,7 +183,6 @@ static int request_frame(AVFilterLink *l
AVFilter avfilter_vf_overlay =
{
.name = "overlay",
- .author = "Bobby Bingham",
.init = init,
.uninit = uninit,
Modified: libavfilter/vf_rotate.c
==============================================================================
--- libavfilter/vf_rotate.c (original)
+++ libavfilter/vf_rotate.c Mon Feb 11 20:56:27 2008
@@ -156,7 +156,6 @@ static void draw_slice(AVFilterLink *lin
AVFilter avfilter_vf_rotate =
{
.name = "rotate",
- .author = "Vitor Sessak",
.init = init,
Modified: libavfilter/vf_scale.c
==============================================================================
--- libavfilter/vf_scale.c (original)
+++ libavfilter/vf_scale.c Mon Feb 11 20:56:27 2008
@@ -143,7 +143,6 @@ static void end_frame(AVFilterLink *link
AVFilter avfilter_vf_scale =
{
.name = "scale",
- .author = "Bobby Bingham",
.init = init,
.uninit = uninit,
Modified: libavfilter/vf_setpts.c
==============================================================================
--- libavfilter/vf_setpts.c (original)
+++ libavfilter/vf_setpts.c Mon Feb 11 20:56:27 2008
@@ -118,7 +118,6 @@ static void uninit(AVFilterContext *ctx)
AVFilter avfilter_vf_setpts =
{
.name = "setpts",
- .author = "Victor Paesa",
.init = init,
.uninit = uninit,
Modified: libavfilter/vf_slicify.c
==============================================================================
--- libavfilter/vf_slicify.c (original)
+++ libavfilter/vf_slicify.c Mon Feb 11 20:56:27 2008
@@ -80,7 +80,6 @@ static void draw_slice(AVFilterLink *lin
AVFilter avfilter_vf_slicify =
{
.name = "slicify",
- .author = "Bobby Bingham",
.init = init,
Modified: libavfilter/vf_split.c
==============================================================================
--- libavfilter/vf_split.c (original)
+++ libavfilter/vf_split.c Mon Feb 11 20:56:27 2008
@@ -46,7 +46,6 @@ static void draw_slice(AVFilterLink *lin
AVFilter avfilter_vf_split =
{
.name = "split",
- .author = "Bobby Bingham",
.inputs = (AVFilterPad[]) {{ .name = "default",
.type = CODEC_TYPE_VIDEO,
Modified: libavfilter/vf_transpose.c
==============================================================================
--- libavfilter/vf_transpose.c (original)
+++ libavfilter/vf_transpose.c Mon Feb 11 20:56:27 2008
@@ -102,7 +102,6 @@ static void start_frame(AVFilterLink *li
AVFilter avfilter_vf_transpose =
{
.name = "transpose",
- .author = "Vitor Sessak",
.priv_size = sizeof(TransContext),
Modified: libavfilter/vf_vflip.c
==============================================================================
--- libavfilter/vf_vflip.c (original)
+++ libavfilter/vf_vflip.c Mon Feb 11 20:56:27 2008
@@ -65,7 +65,6 @@ static void draw_slice(AVFilterLink *lin
AVFilter avfilter_vf_vflip =
{
.name = "vflip",
- .author = "Bobby Bingham",
.priv_size = sizeof(FlipContext),
.inputs = (AVFilterPad[]) {{ .name = "default",
Modified: libavfilter/vsrc_movie.c
==============================================================================
--- libavfilter/vsrc_movie.c (original)
+++ libavfilter/vsrc_movie.c Mon Feb 11 20:56:27 2008
@@ -289,7 +289,6 @@ static void uninit(AVFilterContext *ctx)
AVFilter avfilter_vsrc_movie =
{
.name = "movie",
- .author = "Victor Paesa",
.priv_size = sizeof(MovieContext),
.query_formats = query_formats,
More information about the FFmpeg-soc
mailing list