Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(891)

Unified Diff: media/ffmpeg/ffmpeg_common.h

Issue 2534193003: To M56: Roll src/third_party/ffmpeg/ 3c7a09882..cdf4accee (3188 commits). (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/cast/test/fake_media_source.cc ('k') | media/ffmpeg/ffmpeg_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/ffmpeg/ffmpeg_common.h
diff --git a/media/ffmpeg/ffmpeg_common.h b/media/ffmpeg/ffmpeg_common.h
index ff8f607b2e02ef2c07c7e51e2ccaeec9dc224aa4..85328faacb6e1f5dc45d9a3c1ac350883c38a265 100644
--- a/media/ffmpeg/ffmpeg_common.h
+++ b/media/ffmpeg/ffmpeg_common.h
@@ -96,6 +96,12 @@ MEDIA_EXPORT int64_t ConvertToTimeBase(const AVRational& time_base,
// Converts an FFmpeg audio codec ID into its corresponding supported codec id.
MEDIA_EXPORT AudioCodec CodecIDToAudioCodec(AVCodecID codec_id);
+// Allocates, populates and returns a wrapped AVCodecContext from the
+// AVCodecParameters in |stream|. On failure, returns a wrapped nullptr.
+// Wrapping helps ensure eventual destruction of the AVCodecContext.
+MEDIA_EXPORT std::unique_ptr<AVCodecContext, ScopedPtrAVFreeContext>
+AVStreamToAVCodecContext(const AVStream* stream);
+
// Returns true if AVStream is successfully converted to a AudioDecoderConfig.
// Returns false if conversion fails, in which case |config| is not modified.
MEDIA_EXPORT bool AVStreamToAudioDecoderConfig(const AVStream* stream,
@@ -144,11 +150,6 @@ AVPixelFormat VideoPixelFormatToAVPixelFormat(VideoPixelFormat video_format);
ColorSpace AVColorSpaceToColorSpace(AVColorSpace color_space,
AVColorRange color_range);
-// Convert FFmpeg UTC representation (YYYY-MM-DD HH:MM:SS) to base::Time.
-// Returns true and sets |*out| if |date_utc| contains a valid
-// date string. Otherwise returns fals and timeline_offset is unmodified.
-MEDIA_EXPORT bool FFmpegUTCDateToTime(const char* date_utc, base::Time* out);
-
// Returns a 32-bit hash for the given codec name. See the VerifyUmaCodecHashes
// unit test for more information and code for generating the histogram XML.
MEDIA_EXPORT int32_t HashCodecName(const char* codec_name);
« no previous file with comments | « media/cast/test/fake_media_source.cc ('k') | media/ffmpeg/ffmpeg_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698