- Dec 09, 2014
-
-
Reynaldo H. Verdejo Pinochet authored
Add braces when needed and drop redundant parethesis while at it. Signed-off-by:
Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
-
Reynaldo H. Verdejo Pinochet authored
Fix grammar and quote user-supplied values. Signed-off-by:
Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
-
Reynaldo H. Verdejo Pinochet authored
Should fix FFmpeg Coverity Scan issue #1257013 Signed-off-by:
Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes CID1254668 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Dec 08, 2014
-
-
Moritz Barsnick authored
This ensures that the CFLAGS and LDFLAGS are actually applied. Fixes an incorrect change introduced with the clean-up in commit cfcaf6b3. Reviewed-by:
Nicolas George <george@nsup.org> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'e2e07dba': mov: expand the list of parsed metadata tags Conflicts: libavformat/mov.c See: 543f3db9 See: dadf668d Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Lukasz Marek authored
Signed-off-by:
Lukasz Marek <lukasz.m.luki2@gmail.com>
-
Lukasz Marek authored
This test doesn't cover every possible issue with this function. It covers options management only. Signed-off-by:
Lukasz Marek <lukasz.m.luki2@gmail.com>
-
Michael Niedermayer authored
* commit 'b704b648': mov: parse XMP metadata on demand Conflicts: libavformat/isom.h libavformat/version.h See: 054c506e The default is left unchanged at enabled We can change the default if people prefer but i do not want to do that in a merge. Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '174c5fde': mov: parse @PRM and @PRQ metadata tags Conflicts: libavformat/mov.c See: f540851c Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '35384934': mov: cosmetics: reorder the list of tags Conflicts: libavformat/mov.c Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '6fd91fa1': h264: increase MAX_SLICES to 32 The available sample decodes correctly before, but the reporter of the bug claims that this change reduces artifacts. This is thus merged If someone has samples that decode differently depending in the MAX_SLICES value, please open a ticket on trac. Also this change should be reverted if it turns out that the artifacts that where seen had a different cause Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'd0b22405': vf_frei0r: do not increment string if it reached the end See: 02a6ee51 Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '90411b33': Allow reading of growing avi files (currently being written) Conflicts: libavformat/avidec.c tests/ref/fate/cvid-partial See: e42a3dd1 Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '4843a9c7': dpx: always write the image offset Conflicts: libavcodec/dpxenc.c tests/ref/lavf/dpx See: 361319d0 Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '250e077e': riff: Support decoding png in avi (ImageJ) See: 3668168a Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
This fixes artifacts in the last pixel of rows with some widths and pixel formats Found-by:
Dominique Leroux <Dominique.Leroux@autodesk.com> Tested-by:
Dominique Leroux <Dominique.Leroux@autodesk.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes CID1257010 Reviewed-by:
Lukasz Marek <lukasz.m.luki2@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Vittorio Giovara authored
Based on L-Smash code by Yusuke Nakamura <muken.the.vfrmaniac@gmail.com>.
-
Rong Yan authored
add GET_VDST16() macro Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Vittorio Giovara authored
The Extensible Metadata Platform tag can contain various kind of data which are not strictly related to the video file, such as history of edits and saves from the project file. So display XMP metadata only when the user explicitly requires it. Based on a patch by Marek Fort <marek.fort@chyronhego.com>.
-
Vittorio Giovara authored
These tags describe the product and quicktime library version respectively. They originate from Adobe Premiere, but also some other programs use them. Contrary to other tags, they contain 'raw' data which is not to be interpreted as iso639 or mac strings. Based on a patch by Peter Ross <pross@xvid.org>.
-
Vittorio Giovara authored
Alphabetically order the list by the tag to facilitate the insertion of new ones.
-
Vittorio Giovara authored
H264 streams from CounterPath Bria and some Cisco phones need an increased pool for correct decoding. Bug-Id: 645 Sample-Id: bria-h264.mka
-
Vittorio Giovara authored
Bug-Id: 778 CC: libav-stable@libav.org
-
Joakim Plate authored
This uses the RIFF header stored size to figure out the expected AVI file size, instead of the actual file. To work fully it requires handling failed avio_seek() instead of assuming they always succeed. Some fate file has been cut off and contains half a frame at the end which previously was not output during demuxing. This frame is now output to encoder, thus the fate diff update. Bug-Id: 261 Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
Zoltan Kovacs authored
According to the DPX file format description found at http://www.fileformat.info/format/dpx/egff.htm the ImageElement part of the GenericImageHeader also contains an an offset to the real image data beside the same member that can be found in the GenericFileHeader. Libav keeps this member empty (=0) while some applications expects it to be filled properly. FATE test updated accordingly. Bug-Id: 742 Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
Carl Eugen Hoyos authored
-
Michael Niedermayer authored
* commit 'b280c620': arm: fft_vfp: Unify the behaviour in ff_fft_calc_vfp between arm/thumb Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'ae815764': arm: fft_vfp: Add a missing "endconst" when building in thumb mode Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '29bc7bfb': rtpproto: Write a warning if the input data written isn't RTP packetized Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Martin Storsjö authored
Don't include the function pointer table in the code segment in arm mode. This shouldn't have any significant performance effect. It does end up as a few more instructions than before, for ARM, but only at the entry to this function, not within the fft functions themselves. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Tell the user that the RTP muxer needs to be used to packetize the data - using the RTP protocol on its own isn't enough. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Carl Eugen Hoyos authored
Standalone compilation of the libx264rgb encoder does not work.
-
Benoit Fouet authored
Fixes CID 1257012 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Rens Dijkshoorn authored
This improves compatibility of such files with apple tools Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-