~ubuntu-branches/ubuntu/trusty/ffmpeg-debian/trusty

« back to all changes in this revision

Viewing changes to libavcodec/avcodec.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-02-05 21:22:01 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090205212201-hjhtybuxtm90cbjy
Tags: 3:0.svn20090204-2ubuntu1
* merge from debian. Remaining changes:
  - don't build depend on libfaad-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#define AVCODEC_AVCODEC_H
23
23
 
24
24
/**
25
 
 * @file avcodec.h
 
25
 * @file libavcodec/avcodec.h
26
26
 * external API header
27
27
 */
28
28
 
29
 
 
 
29
#include <errno.h>
30
30
#include "libavutil/avutil.h"
31
31
 
32
32
#define LIBAVCODEC_VERSION_MAJOR 52
2858
2858
 * @param[in] buf_size the size of the output buffer in bytes
2859
2859
 * @param[in] pict the input picture to encode
2860
2860
 * @return On error a negative value is returned, on success zero or the number
2861
 
 * of bytes used from the input buffer.
 
2861
 * of bytes used from the output buffer.
2862
2862
 */
2863
2863
int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
2864
2864
                         const AVFrame *pict);