User Tools

Site Tools


ffmpeg:ffmpeg

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
ffmpeg:ffmpeg [2007/12/14 14:27] devaffmpeg:ffmpeg [2009/08/23 08:59] deva
Line 1: Line 1:
 =====FFMPEG API Documentation===== =====FFMPEG API Documentation=====
 +Taken from [[http://svn.mplayerhq.hu/ffmpeg/trunk/libavformat/avformat.h?view=markup|avformat.h]] and [[http://svn.mplayerhq.hu/ffmpeg/trunk/libavcodec/avcodec.h?view=markup|avcodec.h]] and friends.
  
 ====Structs==== ====Structs====
Line 14: Line 15:
   * [[ffmpeg:Url file flags]]   * [[ffmpeg:Url file flags]]
   * [[ffmpeg:ByteIOContext]]   * [[ffmpeg:ByteIOContext]]
 +  * [[ffmpeg:AVStream]]
  
 ====Enums==== ====Enums====
 +  * [[ffmpeg:CodecType]]
   * [[ffmpeg:PixelFormat]]   * [[ffmpeg:PixelFormat]]
   * [[ffmpeg:CodecID]]   * [[ffmpeg:CodecID]]
   * [[ffmpeg:AVERROR]]   * [[ffmpeg:AVERROR]]
 +
 +====Flags====
 +  * [[ffmpeg:CODEC_FLAG_x]]
  
 ====Functions==== ====Functions====
Line 39: Line 45:
   * [[ffmpeg:av_guess_codec()]]   * [[ffmpeg:av_guess_codec()]]
   * [[ffmpeg:avcodec_open()]] Initializes the AVCodecContext to use the given AVCodec.   * [[ffmpeg:avcodec_open()]] Initializes the AVCodecContext to use the given AVCodec.
 +  * [[ffmpeg:avcodec_alloc_context()]]
  
 ===Decode=== ===Decode===
Line 46: Line 53:
   * [[ffmpeg:avcodec_find_decoder_by_name()]]   * [[ffmpeg:avcodec_find_decoder_by_name()]]
   * [[ffmpeg:avcodec_decode_video()]] Decodes a video frame from a buffer into a picture.   * [[ffmpeg:avcodec_decode_video()]] Decodes a video frame from a buffer into a picture.
 +  * <del>[[ffmpeg:avcodec_decode_audio()]]</del> Deprecated, use [[ffmpeg:avcodec_decode_audio2()]] instead.
 +  * [[ffmpeg:avcodec_decode_audio2()]] Decodes an audio frame from a buffer.
   * [[ffmpeg:av_read_frame()]] Return the next frame of a stream.   * [[ffmpeg:av_read_frame()]] Return the next frame of a stream.
   * <del>[[ffmpeg:av_read_packet()]]</del> (Obsolete, use [[ffmpeg:av_read_frame()]] instead.)   * <del>[[ffmpeg:av_read_packet()]]</del> (Obsolete, use [[ffmpeg:av_read_frame()]] instead.)
Line 64: Line 73:
   * [[ffmpeg:av_free_packet()]] Free a packet.   * [[ffmpeg:av_free_packet()]] Free a packet.
   * [[ffmpeg:av_free()]] Free memory which has been allocated with av_malloc() or av_realloc().   * [[ffmpeg:av_free()]] Free memory which has been allocated with av_malloc() or av_realloc().
-  * [[ffmpeg:av_freep()]]+  * [[ffmpeg:av_freep()]] Free memory, which has been allocated with av_malloc() or av_realloc(), indirectly and set the pointer to NULL.
   * [[ffmpeg:av_malloc()]]   * [[ffmpeg:av_malloc()]]
   * [[ffmpeg:av_realloc()]]   * [[ffmpeg:av_realloc()]]
Line 79: Line 88:
   * [[ffmpeg:av_gen_search()]]   * [[ffmpeg:av_gen_search()]]
   * [[ffmpeg:av_seek_frame()]]   * [[ffmpeg:av_seek_frame()]]
 +
 +====Constributors====
 +  * deva (Bent Bisballe Nyeng - deva@aasimon.org)
  
ffmpeg/ffmpeg.txt · Last modified: 2010/03/03 08:56 by deva