~ubuntu-branches/ubuntu/trusty/gst-libav1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavcodec/thread.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-09-24 17:07:00 UTC
  • mfrom: (1.1.17) (7.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20130924170700-4dg62s3pwl0pdakz
Tags: 1.2.0-1
* New upstream stable release:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
 * Returns the next available frame in picture. *got_picture_ptr
44
44
 * will be 0 if none is available.
45
45
 * The return value on success is the size of the consumed packet for
46
 
 * compatiblity with avcodec_decode_video2(). This means the decoder
 
46
 * compatibility with avcodec_decode_video2(). This means the decoder
47
47
 * has to consume the full packet.
48
48
 *
49
49
 * Parameters are the same as avcodec_decode_video2().
89
89
 
90
90
/**
91
91
 * Wrapper around get_buffer() for frame-multithreaded codecs.
92
 
 * Call this function instead of avctx->get_buffer(f).
 
92
 * Call this function instead of ff_get_buffer(f).
93
93
 * Cannot be called after the codec has called ff_thread_finish_setup().
94
94
 *
95
95
 * @param avctx The current context.