Anton Khirnov
0ef52334ec
lavf, lavu: bump minor versions and add an APIChanges entry for av_ prefixes
...
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit 09d171b988
)
14 years ago
James Zern
728d56e84f
documentation: add encoders chapter
...
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit 0fa904c9d8
)
14 years ago
Janne Grunau
c3dbfa1afd
Add SHA1s to APIChanges for av_dump_format, av_parse_time and av_find_info_tag
...
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
14 years ago
Anton Khirnov
09d171b988
lavf, lavu: bump minor versions and add an APIChanges entry for av_ prefixes
...
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
14 years ago
James Zern
0fa904c9d8
documentation: add encoders chapter
...
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
14 years ago
Reinhard Tartler
7ffe76e540
Merge libavcore into libavutil
...
Done to keep ABI compatible. Otherwise this is just silly
14 years ago
Mans Rullgard
2f6c6a3462
APIchanges: update for 55bad0c: vbv_delay
...
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 8ed4cc65a1
)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
14 years ago
Anssi Hannula
d3c4829a0d
APIchanges: update for 12c14cd
...
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 77c330a046
)
14 years ago
Mans Rullgard
3c9fcab554
apichanges: update for 24a83bd: add AV_DISPOSITION_CLEAN_EFFECTS flag
...
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 935ee1b9bb
)
14 years ago
Reinhard Tartler
737eb5976f
Merge libavcore into libavutil
...
It is pretty hopeless that other considerable projects will adopt
libavutil alone in other projects. Projects that need small footprint
are better off with more specialized libraries such as gnulib or rather
just copy the necessary parts that they need. With this in mind, nobody
is helped by having libavutil and libavcore split. In order to ease
maintenance inside and around FFmpeg and to reduce confusion where to
put common code, avcore's functionality is merged (back) to avutil.
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
14 years ago
Mans Rullgard
8ed4cc65a1
APIchanges: update for 55bad0c: vbv_delay
...
Signed-off-by: Mans Rullgard <mans@mansr.com>
14 years ago
Anssi Hannula
77c330a046
APIchanges: update for 12c14cd
...
Signed-off-by: Mans Rullgard <mans@mansr.com>
14 years ago
Mans Rullgard
935ee1b9bb
apichanges: update for 24a83bd: add AV_DISPOSITION_CLEAN_EFFECTS flag
...
Signed-off-by: Mans Rullgard <mans@mansr.com>
14 years ago
Tilman Brock
ee028bbde9
Fix spelling error.
...
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit b08f59dca4
)
14 years ago
Mans Rullgard
30391c6b5c
Update APIchanges for 910b5b8
...
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 08a459f096
)
14 years ago
Tilman Brock
b08f59dca4
Fix spelling error.
...
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
14 years ago
Mans Rullgard
08a459f096
Update APIchanges for 910b5b8
...
Signed-off-by: Mans Rullgard <mans@mansr.com>
14 years ago
Stefano Sabatini
c906d974b7
Fix script command in a FAQ entry
...
In the FAQ section "How do I encode single pictures into movies?", use
-s for generating symbolic links with the ln command.
The script was generating hard links, which is not likely what it was
supposed to do.
Fix issue 2488.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit e063f5886b
)
14 years ago
Stefano Sabatini
b423996b57
Update overlay documentation after movie syntax update.
...
Overlay documentation is still using the old unsupported syntax.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit aa8ac53b51
)
14 years ago
Peter Ross
547c67c935
Bink version 'b' video decoder
...
Based on original patch by Kostya Shishkov
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit e00f41d574
)
14 years ago
Stefano Sabatini
e063f5886b
Fix script command in a FAQ entry
...
In the FAQ section "How do I encode single pictures into movies?", use
-s for generating symbolic links with the ln command.
The script was generating hard links, which is not likely what it was
supposed to do.
Fix issue 2488.
Signed-off-by: Mans Rullgard <mans@mansr.com>
14 years ago
Stefano Sabatini
aa8ac53b51
Update overlay documentation after movie syntax update.
...
Overlay documentation is still using the old unsupported syntax.
Signed-off-by: Mans Rullgard <mans@mansr.com>
14 years ago
Peter Ross
e00f41d574
Bink version 'b' video decoder
...
Based on original patch by Kostya Shishkov
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
14 years ago
Janne Grunau
4c2ce5900f
document passing the fate samples location via make variable
...
(cherry picked from commit 5c19f64c60
)
14 years ago
Ronald S. Bultje
f94317fd07
Add missing git rev hash.
...
(cherry picked from commit f2146944fc
)
14 years ago
Alexander Strange
043d2ff267
Deprecate avcodec_thread_init()
...
As a side effect of the last commit, avcodec_open() now calls it automatically,
so there is no longer any need for clients to call it.
Instead they should set AVCodecContext.thread_count.
avcodec_thread_free() is deprecated, and will be removed from avcodec.h at the
next MAJOR libavcodec bump.
Rename the functions to ff_thread_init/free, since they are now internal.
Wrappers are provided to maintain API compatibility.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit c0b102ca03
)
14 years ago
Ronald S. Bultje
03e3cb8777
Add missing git rev hash.
...
(cherry picked from commit 8e8cc52be3
)
14 years ago
Alexander Strange
b38f008ea6
Frame-based multithreading framework using pthreads
...
See doc/multithreading.txt for details on use in codecs.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
14 years ago
Ronald S. Bultje
8a278ad30d
Add missing git revision hask.
...
(cherry picked from commit c2bd7578af
)
14 years ago
Janne Grunau
5c19f64c60
document passing the fate samples location via make variable
14 years ago
Ronald S. Bultje
f2146944fc
Add missing git rev hash.
14 years ago
Alexander Strange
c0b102ca03
Deprecate avcodec_thread_init()
...
As a side effect of the last commit, avcodec_open() now calls it automatically,
so there is no longer any need for clients to call it.
Instead they should set AVCodecContext.thread_count.
avcodec_thread_free() is deprecated, and will be removed from avcodec.h at the
next MAJOR libavcodec bump.
Rename the functions to ff_thread_init/free, since they are now internal.
Wrappers are provided to maintain API compatibility.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
14 years ago
Ronald S. Bultje
8e8cc52be3
Add missing git rev hash.
14 years ago
Alexander Strange
37b00b47cb
Frame-based multithreading framework using pthreads
...
See doc/multithreading.txt for details on use in codecs.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
14 years ago
Ronald S. Bultje
c2bd7578af
Add missing git revision hask.
14 years ago
Anssi Hannula
070e5ba560
lavf: rename ff_probe_input_buffer to make it public
...
It is useful for applications that hand input data directly to lavf via
a ByteIOContext.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit 3940caad02
)
14 years ago
Reinhard Tartler
2eed5288d2
Documentation updates for the git migration
...
This cleanup patch updates the developer documentation with respect to
the migration to the git scm.
(cherry picked from commit 87800dc2bf
)
14 years ago
Janne Grunau
17a1919027
add APIChanges entry for fe9a3fb
...
(cherry picked from commit 7ab8758baf
)
14 years ago
Stefano Sabatini
9b8bb626dc
libavfilter: add video movie source
...
See thread:
Subject: [PATCH] movie video source
Date: 2010-12-31 15:35:30 GMT
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
14 years ago
Stefano Sabatini
a1cdf548a2
Apply misc fixes to the image2 muxer documentation.
...
The fixes were pointed out by Diego.
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit 0cad24ce9b
)
14 years ago
Stefano Sabatini
20a4b9e936
Add documentation for the framecrc muxer.
...
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit 77d4ed7a12
)
14 years ago
Stefano Sabatini
ea67c95176
Add documentation for the crc muxer.
...
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit a4effe432f
)
14 years ago
Stefano Sabatini
7e7afb3d54
Document null muxer.
...
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit f4acb837eb
)
14 years ago
Kostya Shishkov
abb5f2b7bf
Xan4 decoder
...
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit 44ddfd47d6
)
14 years ago
Anssi Hannula
3940caad02
lavf: rename ff_probe_input_buffer to make it public
...
It is useful for applications that hand input data directly to lavf via
a ByteIOContext.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
14 years ago
Reinhard Tartler
87800dc2bf
Documentation updates for the git migration
...
This cleanup patch updates the developer documentation with respect to
the migration to the git scm.
14 years ago
Janne Grunau
7ab8758baf
add APIChanges entry for fe9a3fb
14 years ago
Stefano Sabatini
9409c3811c
libavfilter: add video movie source
...
See thread:
Subject: [PATCH] movie video source
Date: 2010-12-31 15:35:30 GMT
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
14 years ago
Stefano Sabatini
0cad24ce9b
Apply misc fixes to the image2 muxer documentation.
...
The fixes were pointed out by Diego.
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
14 years ago
Stefano Sabatini
77d4ed7a12
Add documentation for the framecrc muxer.
...
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
14 years ago