[FFmpeg-cvslog] LAVF API: remove AVOutputFormat.set_parameters() the field is unused.
Michael Niedermayer
git at videolan.org
Sat Apr 30 22:08:51 CEST 2011
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Apr 30 20:03:16 2011 +0200| [a2eef3e9f579db4278ff32cba6281452a163b05f] | committer: Michael Niedermayer
LAVF API: remove AVOutputFormat.set_parameters() the field is unused.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a2eef3e9f579db4278ff32cba6281452a163b05f
---
libavformat/avformat.h | 7 +++----
libavformat/utils.c | 5 -----
2 files changed, 3 insertions(+), 9 deletions(-)
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 2f41f72..c77cbbb 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -285,10 +285,9 @@ typedef struct AVOutputFormat {
* AVFMT_NODIMENSIONS, AVFMT_NOSTREAMS
*/
int flags;
- /**
- * Currently only used to set pixel format if not YUV420P.
- */
- int (*set_parameters)(struct AVFormatContext *, AVFormatParameters *);
+
+ void *dummy;
+
int (*interleave_packet)(struct AVFormatContext *, AVPacket *out,
AVPacket *in, int flush);
diff --git a/libavformat/utils.c b/libavformat/utils.c
index e7ce911..501a411 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2716,11 +2716,6 @@ int av_set_parameters(AVFormatContext *s, AVFormatParameters *ap)
} else
s->priv_data = NULL;
- if (s->oformat->set_parameters) {
- ret = s->oformat->set_parameters(s, ap);
- if (ret < 0)
- return ret;
- }
return 0;
}
More information about the ffmpeg-cvslog
mailing list