-
Notifications
You must be signed in to change notification settings - Fork 50
Up to v0.5.10 (MIK fork) #145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Put profiling instructions for generating profiling information for gprof into the object or executable file. * We don't use gprof to profile. * Fix #212
* Produce warning messages about a number of things that are legal but dubious.
Avoid to implement an empty function in generators.
* From swig documentation about java binding: "If you are going to use optimisations turned on with gcc (for example -O2), ensure you also compile with -fno-strict-aliasing. The GCC optimisations have become more aggressive from gcc-4.0 onwards and will result in code that fails with strict aliasing optimisations turned on." * http://www.swig.org/Doc1.3/Java.html
This test check the number of samples after transcode, between input and output media. The number of channels needs to be the same.
Cannot getFps() from nbFrames anymore. So always get fps from a compute with timebase.
* New source folder 'reader': contains utility classes to read video/audio/... streams. * Add IReader class. * Add VideoReader class. * Update avplay app: use VideoReader class.
* readFrameAt contains the logic. * readNextFrame and readPrevFrame call readFrameAt.
This constructor can improve performances when you create several AudioReader from one InputFile.
* VideoReader and AudioReader instanciate specific classes (to manage video or audio). * Add IReader.cpp
* Implement it in AudioDecoder. * It was already done by the VideoDecoder.
Override this method is sub-classes.
They are not accessible in subclasses.
* With the Frame object, we can access the buffer, the size, the number of samples in case of audio frame, etc... * Update avplay app.
…tream Some codecs need / can use extradata like Huffman tables. mjpeg: Huffman tables rv10: additional flags mpeg4: global headers (they can be in the bitstream or here) ...
Instead of a pointer (avoid NULL).
Clean the code when need to access the AVStream.
… set * Only used if stream PTS is not set. * OutputFile: need to set the time_base of the AVCodecContext of audio streams to be able to compute this duration.
Avoid too much warnings when "AVStream::pts is deprecated" in some versions.
OutputFile: copy extradata of codec context when create a new video stream
CMake: fix double dependencies of av/sw resample
Fix output stream duration
Since it's not used/maintained (we use only Travis).
Readme: add link to doxygen doc
Need to expose these methods in avtranscoder dlls (used by avmeta application).
* Use average framerate that has come from the AVStream. * Clean doc.
Fix get fps
From now use version numbers as follow: major.minor.patch * major: major update * minor: new feature / API change * patch: fix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
API changes
InputFile: rename setProfile to setupUnWrapper.
reader: add VideoReader and AudioReader.
App: add pyRewrap python app.
Enhancements
Decoders: raise exception it try to decode without a call of setupDecoder before decoding.
Rewrap: no error if cannot create an encoder unused.
VideoProperties: can compute nbFrames if it is unknown.
Doc: update doxygen documentation on gh-pages.
Fixes
Rewrap: fix rewrap of video stream with some codecs (h264...).
Rewrap: fix output stream duration if stream PTS is not correctly set.
Build: no dependency to libavresample if it's not necessary.
Other
Log: clean.
Build: remove -pg build option on debug.
Deploy: symbolic links for python applications.
Travis: switch to container-based infrastructure.