summaryrefslogtreecommitdiffstats
path: root/third_party/ffmpeg/avcodec-52.sigs
diff options
context:
space:
mode:
authorajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-09 23:02:18 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-09 23:02:18 +0000
commit858df77725dd21cd8e2a970c49a8570a86eda09c (patch)
tree7f769f51d800278ee662c7b12a7316c9b1a328fb /third_party/ffmpeg/avcodec-52.sigs
parent729f4f485be2a7a4797073ce6ae594c56dde01c8 (diff)
downloadchromium_src-858df77725dd21cd8e2a970c49a8570a86eda09c.zip
chromium_src-858df77725dd21cd8e2a970c49a8570a86eda09c.tar.gz
chromium_src-858df77725dd21cd8e2a970c49a8570a86eda09c.tar.bz2
Reapply ffmpeg changes. The original review is at http://codereview.chromium.org/118046.
Review URL: http://codereview.chromium.org/118444 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17987 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/ffmpeg/avcodec-52.sigs')
-rw-r--r--third_party/ffmpeg/avcodec-52.sigs18
1 files changed, 18 insertions, 0 deletions
diff --git a/third_party/ffmpeg/avcodec-52.sigs b/third_party/ffmpeg/avcodec-52.sigs
new file mode 100644
index 0000000..27b8ef9
--- /dev/null
+++ b/third_party/ffmpeg/avcodec-52.sigs
@@ -0,0 +1,18 @@
+# Copyright (c) 2009 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+#
+# Functions from avcodec used in chromium code.
+
+AVCodec *avcodec_find_decoder(enum CodecID id);
+AVFrame *avcodec_alloc_frame(void);
+int av_get_bits_per_sample_format(enum SampleFormat sample_fmt);
+int av_new_packet(AVPacket *pkt, int size);
+int avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples, int *frame_size_ptr, AVPacket *avpkt);
+int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, AVPacket *avpkt);
+int avcodec_open(AVCodecContext *avctx, AVCodec *codec);
+int avcodec_thread_init(AVCodecContext *s, int thread_count);
+void av_free_packet(AVPacket *pkt);
+void av_init_packet(AVPacket *pkt);
+void avcodec_flush_buffers(AVCodecContext *avctx);
+void avcodec_init(void);