- 07 Jun, 2011 5 commits
-
-
Stefano Sabatini authored
The options -loglevel LEVEL -debug FLAGS can be used for achieving the same objectives, with a finer level of control.
-
Stefano Sabatini authored
Use -vismv 1 instead. Simplify.
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Michael Niedermayer authored
Fixes Ticket164 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 05 Jun, 2011 2 commits
-
-
Stefano Sabatini authored
The -i INPUT option can be implemented more cleanly by using a function option, which can easily be done now that the parse_arg_function passed to parse_options has a standard signature.
-
Stefano Sabatini authored
This is required for a pending simplification.
-
- 03 Jun, 2011 2 commits
-
-
Michael Niedermayer authored
Fixes Ticket119 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Carl Eugen Hoyos authored
On Windows/MinGW the SDL cflags re-define the main() function, which results in a linking error if the define is not undeffed. Since the addition of the SDL output device, SDL cflags are used also for compiling ffmpeg and ffprobe, so we need to move this trick from ffplay.c to a common header. Fix trac issue #256.
-
- 02 Jun, 2011 1 commit
-
-
Clément Bœsch authored
-
- 29 May, 2011 1 commit
-
-
Clément Bœsch authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 28 May, 2011 2 commits
-
-
Stefano Sabatini authored
Make ff* tools only accept opt_* functions taking two arguments. The distinction between functions with one and two arguments is quite pointless. Simplify parse_options() code.
-
Stefano Sabatini authored
Make ff* tools only accept opt_* functions taking two arguments. The distinction between functions with one and two arguments is quite pointless. Simplify parse_options() code. Signed-off-by:
Ronald S. Bultje <rsbultje@gmail.com>
-
- 26 May, 2011 1 commit
-
-
Diego Biurrun authored
-
- 18 May, 2011 1 commit
-
-
Justin Ruggles authored
-
- 16 May, 2011 1 commit
-
-
Stefano Sabatini authored
Move up the definition of audio_write_get_buf_size(), so that it is defined before it is used. Simplify. (cherry picked from commit 8776f3d2)
-
- 12 May, 2011 1 commit
-
-
Diego Biurrun authored
Adding _POSIX_C_SOURCE to CPPFLAGS globally produces all sorts of problems since it causes certain system functions to be hidden on some (BSD) systems. The solution is to only add the flag on systems that really require it, i.e. glibc-based ones. This change makes BSD systems compile out-of-the-box without the need for adding specific flags manually. It also allows dropping a number of flags set manually on a file-per-file basis, but were only present to work around breakage introduced by the presence of _POSIX_C_SOURCE. Also add _XOPEN_SOURCE to CPPFLAGS for glibc systems. We use XSI extensions in several places already, so it is preferable to define it globally instead of littering source files with individual #defines only needed for glibc.
-
- 11 May, 2011 1 commit
-
-
Benjamin Larsson authored
ffplay: add a dummy option -i so that it is easy to switch between ffmpeg -i "file" and ffplay -i "file". Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 10 May, 2011 1 commit
-
-
Oskar Arvidsson authored
In high bit depth the pixels will not be stored in uint8_t like in the normal case, but in uint16_t. The pixel size is thus 1 in normal bit depth and 2 in high bit depth. Preparatory patch for high bit depth h264 decoding support. Signed-off-by:
Ronald S. Bultje <rsbultje@gmail.com>
-
- 07 May, 2011 2 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Stefano Sabatini authored
avfilter_copy_frame_props() avoids code duplication and increases robustness. The added files libavfilter/avcodec.[ch] are used for containing utilities useful for gluing togheter libavfilter and libavcodec.
-
- 05 May, 2011 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 04 May, 2011 2 commits
-
-
alexandru_mg3 authored
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 02 May, 2011 3 commits
-
-
Stefano Sabatini authored
-
Stefano Sabatini authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 01 May, 2011 3 commits
-
-
Stefano Sabatini authored
Improve consistency with libavcodec. This breaks libavfilter API/ABI. The non-sequential 2.1.0 -> 2.4.0 bump is due to the mess previously done with the lavfi minor number.
-
Stefano Sabatini authored
The sample aspect ratio is a per-frame property, so it makes sense to define it in AVFrame rather than in the codec/stream context. Simplify application-level sample aspect ratio information extraction, and allow further simplifications.
-
Stefano Sabatini authored
This is similar to what was done with pkt_pts. This simplifies the operation of extracting the pos information from the AVPacket, and allows further simplifications.
-
- 29 Apr, 2011 1 commit
-
-
Diego Biurrun authored
-
- 27 Apr, 2011 3 commits
-
-
Stefano Sabatini authored
Move output_picture() code to queue_picture(), and remove it. Simplify code path.
-
Stefano Sabatini authored
The new name is shorter and less confusing.
-
Stefano Sabatini authored
The new names are less misleading and more reciprocally consistent.
-
- 25 Apr, 2011 2 commits
-
-
Stefano Sabatini authored
Also automatically select the show mode only if not specified by the user. Fix trac issue #109. Signed-off-by:
Stefano Sabatini <stefano.sabatini-lala@poste.it>
-
Stefano Sabatini authored
Help debugging with GDB, maybe cleaner/safer. Signed-off-by:
Stefano Sabatini <stefano.sabatini-lala@poste.it>
-
- 24 Apr, 2011 1 commit
-
-
Stefano Sabatini authored
In video_image_display(), fix exception occurring when the size of the rectangle passed to SDL_DisplayYUVOverlay() is 0x0, which happens when interactively resizing the SDL window. This is done by forcing the minimum size to 1x1. Signed-off-by:
Stefano Sabatini <stefano.sabatini-lala@poste.it>
-
- 23 Apr, 2011 3 commits
-
-
Diego Biurrun authored
-
Stefano Sabatini authored
Slightly simplify. Signed-off-by:
Stefano Sabatini <stefano.sabatini-lala@poste.it>
-
Stefano Sabatini authored
Signed-off-by:
Stefano Sabatini <stefano.sabatini-lala@poste.it>
-