~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavfilter/avfilter.h

  • Committer: Gauvain Pocentek
  • Date: 2012-03-06 11:59:12 UTC
  • mfrom: (66.1.15 precise)
  • Revision ID: gauvain@pocentek.net-20120306115912-h9d6kt9j0l532oo5
* Merge from Ubuntu:
  - put back faac support
  - recommends apport-hooks-medibuntu
  - change Maintainer, Uploaders & Vcs-* fields.
* New upstream snapshot
* upload to unstable
* Build against external libmpeg2
* drop 51_FTBFS_arm.patch again
* no longer build depend on libcdparanoia-dev on the Hurd
* Fix FTBFS on the hurd.
  Thanks to Samuel Thibault <sthibault@debian.org> (Closes: #654974)
* Fix FTBFS on arm
* New upstream snapshot, Closes: #650339, #643621, #481807
* Imported Upstream version 1.0~rc4+svn34492
* Bump standards version
* Bump dependency on libav >= 4:0.8~, Closes: #653887
* Fix build-indep
* Build mplayer-gui again, Closes: #568514
* Drop debian/all-lang-config-mak.sh, no longer needed
* include .dfsg1 in version number
* remove get-orig-source target
* no longer prune compiler flags from the environment
* No longer advertise nor build 3fdx, mga and dxr3 backends,
  Closes: #496106, #442181, #533546
* beautify mplayer version identification string
* Brown paperbag upload.
* Next try to fix build failure on sparce after recent binutils change.
* Brown paperbag upload.
* Really fix build failure on sparc after recent binutils change.
* Properly set Replaces/Conflicts on mplayer2{,-dbg} to avoid
  file overwrite errors.
* Adjust versioning of mplayer listed in the mplayer-dbg's Depends field.
* Fix build failure on sparc after recent binutils change.
* Urgency medium bumped because of RC-level bugfix
  and speeding up x264 transition.
* Update to my @debian.org email.
* Upload to unstable
* Enable joystick support on Linux only, Closes: #638408
* Rebuild fixes toolchain issue on arm, Closes: #637077
* New upstream snapshot
* following the discussion started by Diego Biurrun <diego@biurrun.de>
  in debian-devel, I have prepared a new packaging of 'mplayer'
  (with code that comes from CVS)
* the upstream tar.bz cannot be distributed by Debian, since it contains
   CSS code; so I am repackaging it 
* I have tried my best to address all known issues:
  - the package contains the detailed Copyright made by Diego Biurrun 
  - the package does not contain CSS code, or  AFAIK other code on which 
     there is active patent enforcement
  - there is a script  debian/cvs-changelog.sh  that shows all changes
     done to files included in this source.
    This should comply with GPLv2 sec 2.a  (in spirit if not in letter)
    For this reason, the source code contains CVS directories.
* needs   make (>= 3.80) for 'html-chunked-$(1)' in DOCS/xml/Makefile

* some corrections, as suggested Diego Biurrun
  - binary codecs should go into /usr/lib/codecs (upstream default)
  - better template 'mplayer/install_codecs'
  - an empty 'font=' in mplayer.conf breaks mplayer: postinst corrected
* correction in 'mplayer/cfgnote'
* better mplayer.postinst and mplayer.config

* New upstream release
* better debian/copyright file
* do not ship a skin
* New upstream release
* changed DEB_BUILD_OPTIONS to DEB_BUILD_CONFIGURE ,
  DEB_BUILD_OPTIONS is used as in debian policy
* use gcc-3.4
* changed xlibs-dev to a long list of dependencies, for Debian/etch
* try to adhere to  http://www.mplayerhq.hu/DOCS/tech/binary-packaging.txt
  (see README.Debian for details)
* removed dependency on xlibmesa-dev, disabled opengl
* New upstream release
* Simon McVittie <hacks@pseudorandom.co.uk> wonderful work:
- Work around Debian bug #267442 (glibc's sys/uio.h and gcc's altivec.h have
  conflicting uses for __vector) by re-ordering #includes
- Fix potential symlink attack in ./configure
- Disable support for binary codecs on platforms for which those codecs
  aren't available; also disable the corresponding Debconf note when it's
  inappropriate
- Changed Build-Depends: so it works in pbuilder
- Explicitly build-depend on libjpeg62-dev, libfontconfig1-dev,
  libungif4-dev 
- Tweak debian/rules to avoid certain errors being ignored
- Use --language=all
* provide a target  'debian/rules get-orig-source' 
  that recreates the orig.tar.gz ; then use the above orig.tar.gz
* rewrote some parts of debian/rules
* don't clean and recompile docs if upstream ships them
* mplayer-doc was shipping too much stuff
* translated man pages where not installed properly
* compile with libdv4-dev
* correct README.Debian
* Forgot build-dep on libtheora
* Must not depend on libxvidcore
* New upstream release
* new release.
* rc1 to become 0.90
* new pre-release
* new pre-release
* gtk bug fixed.
* new release.
* version bumped
* 0.60 pre2 release
* 0.60 pre-release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#define AVFILTER_AVFILTER_H
24
24
 
25
25
#include "libavutil/avutil.h"
 
26
#include "libavutil/log.h"
26
27
#include "libavutil/samplefmt.h"
 
28
#include "libavutil/pixfmt.h"
 
29
#include "libavutil/rational.h"
 
30
#include "libavcodec/avcodec.h"
27
31
 
28
32
#define LIBAVFILTER_VERSION_MAJOR  2
29
 
#define LIBAVFILTER_VERSION_MINOR  4
 
33
#define LIBAVFILTER_VERSION_MINOR  14
30
34
#define LIBAVFILTER_VERSION_MICRO  0
31
35
 
32
36
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
97
101
 * per reference properties must be separated out.
98
102
 */
99
103
typedef struct AVFilterBufferRefAudioProps {
100
 
    int64_t channel_layout;     ///< channel layout of audio buffer
 
104
    uint64_t channel_layout;    ///< channel layout of audio buffer
101
105
    int nb_samples;             ///< number of audio samples
102
106
    int size;                   ///< audio buffer size
103
107
    uint32_t sample_rate;       ///< audio buffer sample rate
160
164
    switch (src->type) {
161
165
    case AVMEDIA_TYPE_VIDEO: *dst->video = *src->video; break;
162
166
    case AVMEDIA_TYPE_AUDIO: *dst->audio = *src->audio; break;
 
167
    default: break;
163
168
    }
164
169
}
165
170
 
373
378
     */
374
379
    AVFilterBufferRef *(*get_audio_buffer)(AVFilterLink *link, int perms,
375
380
                                           enum AVSampleFormat sample_fmt, int size,
376
 
                                           int64_t channel_layout, int planar);
 
381
                                           uint64_t channel_layout, int planar);
377
382
 
378
383
    /**
379
384
     * Callback called after the slices of a frame are completely sent. If
462
467
/** default handler for get_audio_buffer() for audio inputs */
463
468
AVFilterBufferRef *avfilter_default_get_audio_buffer(AVFilterLink *link, int perms,
464
469
                                                     enum AVSampleFormat sample_fmt, int size,
465
 
                                                     int64_t channel_layout, int planar);
 
470
                                                     uint64_t channel_layout, int planar);
466
471
 
467
472
/**
468
473
 * A helper for query_formats() which sets all links to the same list of
493
498
/** get_audio_buffer() handler for filters which simply pass audio along */
494
499
AVFilterBufferRef *avfilter_null_get_audio_buffer(AVFilterLink *link, int perms,
495
500
                                                  enum AVSampleFormat sample_fmt, int size,
496
 
                                                  int64_t channel_layout, int planar);
 
501
                                                  uint64_t channel_layout, int planar);
497
502
 
498
503
/**
499
504
 * Filter definition. This defines the pads a filter contains, and all the
586
591
    int h;                      ///< agreed upon image height
587
592
    AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
588
593
    /* These two parameters apply only to audio */
589
 
    int64_t channel_layout;     ///< channel layout of current buffer (see libavutil/audioconvert.h)
 
594
    uint64_t channel_layout;    ///< channel layout of current buffer (see libavutil/audioconvert.h)
590
595
    int64_t sample_rate;        ///< samples per second
591
596
 
592
597
    int format;                 ///< agreed upon media format
685
690
 */
686
691
AVFilterBufferRef *avfilter_get_audio_buffer(AVFilterLink *link, int perms,
687
692
                                             enum AVSampleFormat sample_fmt, int size,
688
 
                                             int64_t channel_layout, int planar);
 
693
                                             uint64_t channel_layout, int planar);
689
694
 
690
695
/**
691
696
 * Request an input frame from the filter at the other end of the link.
705
710
int avfilter_poll_frame(AVFilterLink *link);
706
711
 
707
712
/**
708
 
 * Notifie the next filter of the start of a frame.
 
713
 * Notify the next filter of the start of a frame.
709
714
 *
710
715
 * @param link   the output link the frame will be sent over
711
716
 * @param picref A reference to the frame about to be sent. The data for this
859
864
                        &f->output_pads, &f->outputs, p);
860
865
}
861
866
 
 
867
/**
 
868
 * Copy the frame properties of src to dst, without copying the actual
 
869
 * image data.
 
870
 *
 
871
 * @return 0 on success, a negative number on error.
 
872
 */
 
873
int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src);
 
874
 
862
875
#endif /* AVFILTER_AVFILTER_H */