Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(825)

Side by Side Diff: source/patched-ffmpeg-mt/doc/APIchanges

Issue 3384002: ffmpeg source update for sep 09 (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « source/patched-ffmpeg-mt/configure ('k') | source/patched-ffmpeg-mt/doc/developer.texi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Never assume the API of libav* to be stable unless at least 1 week has passed si nce 1 Never assume the API of libav* to be stable unless at least 1 week has passed si nce
2 the last major version increase. 2 the last major version increase.
3 The last version increases were: 3 The last version increases were:
4 libavcodec: ? 4 libavcodec: ?
5 libavcore: 2010-07-21 5 libavcore: 2010-07-21
6 libavdevice: ? 6 libavdevice: ?
7 libavfilter: 2009-10-18 7 libavfilter: 2009-10-18
8 libavformat: ? 8 libavformat: ?
9 libpostproc: ? 9 libpostproc: ?
10 libswscale: ? 10 libswscale: ?
11 libavutil: 2009-03-08 11 libavutil: 2009-03-08
12 12
13 13
14 API changes, most recent first: 14 API changes, most recent first:
15 15
16 2010-09-08 - r25076 - lavu 50.26.0 - av_get_cpu_flags()
17 Add av_get_cpu_flags().
18
19 2010-09-07 - r25067 - lavcore 0.9.0 - av_image_copy()
20 Add av_image_copy().
21
22 2010-09-07 - r25064 - lavcore 0.8.0 - av_image_copy_plane()
23 Add av_image_copy_plane().
24
25 2010-09-07 - r25057 - lavcore 0.7.0 - imgutils.h
26 Adopt hierarchical scheme for the imgutils.h function names,
27 deprecate the old names.
28
29 2010-09-04 - r25040 - lavu 50.25.0 - AV_CPU_FLAG_*
30 Deprecate the FF_MM_* flags defined in libavcodec/avcodec.h in favor
31 of the AV_CPU_FLAG_* flags defined in libavutil/cpu.h.
32
33 2010-08-26 - r24936 - lavc 52.87.0 - avcodec_get_channel_layout()
34 Add avcodec_get_channel_layout() in audioconvert.h.
35
36 2010-08-20 - r24851 - lavcore 0.6.0 - av_fill_image_max_pixsteps()
37 Rename av_fill_image_max_pixstep() to av_fill_image_max_pixsteps().
38
39 2010-08-18 - r24827 - lavcore 0.5.0 - av_fill_image_max_pixstep()
40 Add av_fill_image_max_pixstep() in imgutils.h.
41
42 2010-08-17 - r24814 - lavu 50.24.0 - AV_NE()
43 Add the AV_NE macro.
44
45 2010-08-17 - r24811 - lavfi 1.36.0 - audio framework
46 Implement AVFilterBufferRefAudioProps struct for audio properties,
47 get_audio_buffer(), filter_samples() functions and related changes.
48
49 2010-08-12 - r24787 - lavcore 0.4.0 - av_get_image_linesize()
50 Add av_get_image_linesize() in imgutils.h.
51
52 2010-08-11 - r24773 - lavfi 1.34.0 - AVFilterBufferRef
53 Resize data and linesize arrays in AVFilterBufferRef to 8.
54
55 This change breaks libavfilter API/ABI.
56
57 2010-08-11 - r24768 - lavc 52.85.0 - av_picture_data_copy()
58 Add av_picture_data_copy in avcodec.h.
59
60 2010-08-11 - r24765 - lavfi 1.33.0 - avfilter_open()
61 Change avfilter_open() signature:
62 AVFilterContext *avfilter_open(AVFilter *filter, const char *inst_name) ->
63 int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char * inst_name);
64
65 This change breaks libavfilter API/ABI.
66
67 2010-08-11 - r24763 - lavfi 1.32.0 - AVFilterBufferRef
68 Add a type field to AVFilterBufferRef, and move video specific
69 properties to AVFilterBufferRefVideoProps.
70
71 This change breaks libavfilter API/ABI.
72
16 2010-08-07 - r24732 - lavfi 1.31.0 - AVFilterLink 73 2010-08-07 - r24732 - lavfi 1.31.0 - AVFilterLink
17 Rename AVFilterLink fields: 74 Rename AVFilterLink fields:
18 AVFilterLink.srcpic -> AVFilterLink.src_buf 75 AVFilterLink.srcpic -> AVFilterLink.src_buf
19 AVFilterLink.cur_pic -> AVFilterLink.cur_buf 76 AVFilterLink.cur_pic -> AVFilterLink.cur_buf
20 AVFilterLink.outpic -> AVFilterLink.out_buf 77 AVFilterLink.outpic -> AVFilterLink.out_buf
21 78
22 2010-08-07 - r24731 - lavfi 1.30.0 79 2010-08-07 - r24731 - lavfi 1.30.0
23 Rename functions and fields: 80 Rename functions and fields:
24 avfilter_(un)ref_pic -> avfilter_(un)ref_buffer 81 avfilter_(un)ref_pic -> avfilter_(un)ref_buffer
25 avfilter_copy_picref_props -> avfilter_copy_buffer_ref_props 82 avfilter_copy_picref_props -> avfilter_copy_buffer_ref_props
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 - AVFormatContext.comment 419 - AVFormatContext.comment
363 - AVFormatContext.album 420 - AVFormatContext.album
364 - AVFormatContext.year 421 - AVFormatContext.year
365 - AVFormatContext.track 422 - AVFormatContext.track
366 - AVFormatContext.genre 423 - AVFormatContext.genre
367 - AVStream.language 424 - AVStream.language
368 - AVStream.filename 425 - AVStream.filename
369 - AVProgram.provider_name 426 - AVProgram.provider_name
370 - AVProgram.name 427 - AVProgram.name
371 - AVChapter.title 428 - AVChapter.title
OLDNEW
« no previous file with comments | « source/patched-ffmpeg-mt/configure ('k') | source/patched-ffmpeg-mt/doc/developer.texi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698