Stefano Sabatini
d22e9795e6
Fix typo.
...
Originally committed as revision 25924 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
c61cdd0afb
Move AV_NOPTS_VALUE, AV_TIME_BASE, AV_TIME_BASE_Q symbols from
...
libavcodec to libavcore.
Remove another compile-time dependancy of libavfilter on libavcodec.
Originally committed as revision 25923 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
16cfc96124
Add CODEC_CAP_NEG_LINESIZES.
...
Originally committed as revision 25886 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
ab79ee12b9
Cosmetics: add empty line which was previously removed.
...
Improve readability.
Originally committed as revision 25882 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
bb4afa13dd
Deprecate avcodec_pix_fmt_string() in favor of
...
av_get_pix_fmt_string(), added to libavutil/pixdesc.h.
Originally committed as revision 25879 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
4da12e3b13
Implement av_image_alloc() and use it in
...
avfilter_default_get_video_buffer().
Originally committed as revision 25878 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
037be76e15
Add avfilter_graph_create_filter().
...
Originally committed as revision 25862 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
d6adf44b06
Fix date in last APIchanges entry.
...
Originally committed as revision 25830 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
d38c340fdc
Implement avfilter_get_video_buffer_ref_from_arrays().
...
Originally committed as revision 25827 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
176a6157c0
Move audio channel API from libavcodec to libavcore.
...
Originally committed as revision 25787 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Reimar Döffinger
e58d0392c5
Document added functions.
...
Originally committed as revision 25783 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Aurelien Jacobs
0985e1a3ca
move the av_parse_color() function from libavfilter to libavcore
...
Originally committed as revision 25761 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Aurelien Jacobs
c716f91757
minor bump and APIchanges for r25745
...
Originally committed as revision 25752 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
47c5e4145c
Fix revision number of the last APIchanges entry.
...
Originally committed as revision 25741 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
5aaea022ab
Make avfiltergraph.h public.
...
Originally committed as revision 25740 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
4fcbb2af33
Prefix with "ff_" the functions:
...
ff_avfilter_graph_check_validity()
ff_avfilter_graph_config_links()
ff_avfilter_graph_config_formats()
and move their declaration to internal.h. These functions are never
used in application code, so it is better to consider them internal
functions, this can be changed later if necessary. Simplify API.
Originally committed as revision 25737 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
d2af7205a1
Use hierarchic names convention (prefix them with av_expr) for the
...
eval API.
More grep-friendly and more consistent with the rest of the FFmpeg
API.
Originally committed as revision 25708 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
24de0edbd5
Rename avfilter_destroy() as avfilter_free().
...
The new name is shorter and more consistent with the FFmpeg API, and
sounds less evil.
Originally committed as revision 25707 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
1e80a0eaa4
Remove graphparser.h header, move AVFilterInOut and
...
avfilter_graph_parse() declaration to libavfilter/avfiltergraph.h.
Simplify, and less confusing for the user.
Originally committed as revision 25705 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
3fd3eea7f3
Fix date in latest APIchanges entry.
...
Originally committed as revision 25702 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
da6ec07c41
Bump lavfi minor and add APIchanges entry after the rename of
...
AVFilterInOut.filter.
Originally committed as revision 25701 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
146b655544
Fix off-by-one error in APIchanges file.
...
Originally committed as revision 25675 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
97dd1e4a87
Rename avfilter_graph_destroy() to avfilter_graph_free().
...
The new name is shorter and more consistent with the rest of the API.
This change breaks libavfilter API/ABI.
Originally committed as revision 25674 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
e15aeea656
Implement avfilter_graph_alloc().
...
Originally committed as revision 25673 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
6f84cd1279
Add av_get_bits_per_sample_fmt() to libavcore/samplefmt.h and
...
deprecate av_get_bits_per_sample_format().
Originally committed as revision 25654 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
d63e456a2a
Implement functions:
...
av_get_sample_fmt_name()
av_get_sample_fmt()
av_get_sample_fmt_string()
in libavcore, and deprecate the corresponding libavcodec/audioconvert.h functions:
avcodec_get_sample_fmt_name()
avcodec_get_sample_fmt()
avcodec_sample_fmt_string()
Originally committed as revision 25653 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
262d1c5d22
Move sample format definitions from libavcodec to libavcore.
...
Originally committed as revision 25652 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
2a24df9357
Add avfilter_graph_config().
...
Originally committed as revision 25502 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Anton Khirnov
03700d399b
Export metadata in the generic format. Deprecate old conversion API.
...
patch by Anton Khirnov anton _at_ khirnov _dot_ net
Originally committed as revision 25493 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
7761129540
Add APIchanges entry after r25441.
...
Originally committed as revision 25443 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
c581279347
Add APIchanges entry for lsws change of r32368.
...
Originally committed as revision 25249 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
c6625ad541
Update APIchanges after r25236.
...
Originally committed as revision 25238 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
4ecf1539bf
Add APIchanges entry after r25227.
...
Originally committed as revision 25228 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
b3dd5e5971
Add APIchanges entry after r25225.
...
Originally committed as revision 25226 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
41f87daaa3
Bump version and update APIchanges after r25210.
...
Originally committed as revision 25216 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Michael Niedermayer
1c1c80f0a3
2nd try to fix av_log() repeated detection
...
Originally committed as revision 25174 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
07cac2a082
Update doc/APIchanges after the last API changes.
...
Originally committed as revision 25168 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
15cae5e605
Add APIchanges entry for the av_get_cpu_flags() addition of r25076.
...
Originally committed as revision 25077 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
16bacad425
Add APIchanges entry after the recent changes to imgutils.h API of
...
r25064 and r25067.
Originally committed as revision 25071 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
1904035bac
Add APIchanges entry after the libavcore/imgutils.h renames of r25057.
...
Originally committed as revision 25059 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
47806f4119
Add APIchanges entry corresponding to the libavutil/cpu.h addition of
...
r25040.
Originally committed as revision 25041 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
798dc641c4
Add APIchanges entry after the addition of
...
avcodec_get_channel_layout() of r24936.
Originally committed as revision 24937 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
26553088cc
Add APIchanges for av_fill_image_max_pixstep() rename of r24851.
...
Originally committed as revision 24852 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
33d2e7b395
Add APIchanges entry after the addition of av_fill_image_max_pixstep()
...
of r24827.
Originally committed as revision 24828 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
7f38d28c39
Add APIchanges entry after the addition of AV_NE in r24814.
...
Originally committed as revision 24815 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
3f52a907e3
Add APIchanges entry after libavfilter audio framework addition of
...
r24811.
Originally committed as revision 24813 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
d1a04371cf
Add APIchanges entry after the addition of av_get_image_linesize() of
...
r24787.
Originally committed as revision 24788 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
5bf840c411
Add APIchanges entry for the AVFilterBufferRef changes in r24773.
...
Originally committed as revision 24774 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
c6a34954b9
Add APIchanges entry after av_picture_data_copy() addition.
...
Originally committed as revision 24769 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago
Stefano Sabatini
4bf2d6e8d4
Fix typo.
...
Originally committed as revision 24767 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 years ago