mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
Fixed the jpeg decoder
Original commit message from CVS: Fixed the jpeg decoder Modifications for lame >=3.86
This commit is contained in:
parent
d85de350b9
commit
47ef3f848f
4 changed files with 2150 additions and 2080 deletions
|
@ -345,7 +345,7 @@ AC_CHECK_HEADER(cdda_paranoia.h, :, HAVE_CDPARANOIA=no)
|
||||||
dnl Check for liblame
|
dnl Check for liblame
|
||||||
AC_MSG_CHECKING(LAME library)
|
AC_MSG_CHECKING(LAME library)
|
||||||
AC_CHECK_LIB(mp3lame, lame_init, HAVE_LIBLAME=yes, HAVE_LIBLAME=no, )
|
AC_CHECK_LIB(mp3lame, lame_init, HAVE_LIBLAME=yes, HAVE_LIBLAME=no, )
|
||||||
AC_CHECK_HEADER(lame.h, :, HAVE_LIBLAME=no)
|
AC_CHECK_HEADER(lame/lame.h, :, HAVE_LIBLAME=no)
|
||||||
|
|
||||||
dnl Check for libshout
|
dnl Check for libshout
|
||||||
AC_MSG_CHECKING(Shout library)
|
AC_MSG_CHECKING(Shout library)
|
||||||
|
|
17
docs/gst/tmpl/gstasyncdisksrc.sgml
Normal file
17
docs/gst/tmpl/gstasyncdisksrc.sgml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
<!-- ##### SECTION Title ##### -->
|
||||||
|
GstAsyncDiskSrc
|
||||||
|
|
||||||
|
<!-- ##### SECTION Short_Description ##### -->
|
||||||
|
Asynchronous disk reader. (asyncdisksrc)
|
||||||
|
|
||||||
|
<!-- ##### SECTION Long_Description ##### -->
|
||||||
|
<para>
|
||||||
|
Reads data from a file. You can seek to a specific location by setting
|
||||||
|
the offset.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### SECTION See_Also ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
|
@ -127,9 +127,12 @@ The function that will be called when pulling a region buffer.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@pad: the pad to get a buffer from
|
@pad: the pad to get a buffer from
|
||||||
|
@type:
|
||||||
@offset: the offset of the region to get
|
@offset: the offset of the region to get
|
||||||
@size: the size of the region to get
|
@len:
|
||||||
@Returns: a #GstBuffer
|
@Returns: a #GstBuffer
|
||||||
|
<!-- # Unused Parameters # -->
|
||||||
|
@size: the size of the region to get
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### USER_FUNCTION GstPadQoSFunction ##### -->
|
<!-- ##### USER_FUNCTION GstPadQoSFunction ##### -->
|
||||||
|
@ -175,9 +178,12 @@ The function that will be called when pulling a region buffer.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@pad: the pad to pull
|
@pad: the pad to pull
|
||||||
|
@type:
|
||||||
@offset: the offset of the region to pull
|
@offset: the offset of the region to pull
|
||||||
@size: the size of the region to pull
|
@len:
|
||||||
@Returns: a GstBuffer
|
@Returns: a GstBuffer
|
||||||
|
<!-- # Unused Parameters # -->
|
||||||
|
@size: the size of the region to pull
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### ENUM GstPadDirection ##### -->
|
<!-- ##### ENUM GstPadDirection ##### -->
|
||||||
|
@ -446,24 +452,17 @@ Destroy the pad.
|
||||||
@Returns:
|
@Returns:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gst_pad_pull_region ##### -->
|
<!-- ##### FUNCTION gst_pad_pullregion ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@pad:
|
@pad:
|
||||||
|
@type:
|
||||||
@offset:
|
@offset:
|
||||||
@size:
|
@len:
|
||||||
@Returns:
|
@Returns:
|
||||||
|
<!-- # Unused Parameters # -->
|
||||||
|
|
||||||
<!-- ##### MACRO gst_pad_pullregion ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@pad:
|
|
||||||
@offset:
|
|
||||||
@size:
|
@size:
|
||||||
|
|
||||||
|
|
||||||
|
@ -526,6 +525,9 @@ Call the EOS function of the pad
|
||||||
@threadstate:
|
@threadstate:
|
||||||
@peer:
|
@peer:
|
||||||
@bufpen:
|
@bufpen:
|
||||||
|
@regiontype:
|
||||||
|
@offset:
|
||||||
|
@len:
|
||||||
@chainfunc:
|
@chainfunc:
|
||||||
@getfunc:
|
@getfunc:
|
||||||
@getregionfunc:
|
@getregionfunc:
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue