Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: patched-ffmpeg-mt/libavcodec/libxvidff.c

Issue 789004: ffmpeg roll of source to mar 9 version... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: patched-ffmpeg-mt/libavcodec/libxvidff.c
===================================================================
--- patched-ffmpeg-mt/libavcodec/libxvidff.c (revision 41250)
+++ patched-ffmpeg-mt/libavcodec/libxvidff.c (working copy)
@@ -82,7 +82,7 @@
* @param avctx AVCodecContext pointer to context
* @return Returns 0 on success, -1 on failure
*/
-av_cold int ff_xvid_encode_init(AVCodecContext *avctx) {
+static av_cold int xvid_encode_init(AVCodecContext *avctx) {
int xerr, i;
int xvid_flags = avctx->flags;
struct xvid_context *x = avctx->priv_data;
@@ -367,7 +367,7 @@
* @param data Pointer to AVFrame of unencoded frame
* @return Returns 0 on success, -1 on failure
*/
-int ff_xvid_encode_frame(AVCodecContext *avctx,
+static int xvid_encode_frame(AVCodecContext *avctx,
unsigned char *frame, int buf_size, void *data) {
int xerr, i;
char *tmp;
@@ -475,7 +475,7 @@
* @param avctx AVCodecContext pointer to context
* @return Returns 0, success guaranteed
*/
-av_cold int ff_xvid_encode_close(AVCodecContext *avctx) {
+static av_cold int xvid_encode_close(AVCodecContext *avctx) {
struct xvid_context *x = avctx->priv_data;
xvid_encore(x->encoder_handle, XVID_ENC_DESTROY, NULL, NULL);
@@ -772,9 +772,9 @@
CODEC_TYPE_VIDEO,
CODEC_ID_XVID,
sizeof(struct xvid_context),
- ff_xvid_encode_init,
- ff_xvid_encode_frame,
- ff_xvid_encode_close,
+ xvid_encode_init,
+ xvid_encode_frame,
+ xvid_encode_close,
.pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
.long_name= NULL_IF_CONFIG_SMALL("libxvidcore MPEG-4 part 2"),
};

Powered by Google App Engine
This is Rietveld 408576698