前提
I帧:关键帧,帧内压缩,不使用运动补偿,不依赖其他库,可以独立解码
P帧:帧间编码方式,前向时间预测,可以包含帧内编码的部分,p帧的宏块可以是前向预测,也可以是帧内编码。依赖于前面的I帧或P帧
B帧:帧间编码方式,双向时间预测,大大提高压缩倍数。视频帧的传输顺序和显示顺序不同,依赖前面的P帧或I帧,依赖后面的P帧
图像组GOP:两个关键帧之间的距离,码率不变,GOP越大,P、B帧越多,图像质量越好
库
libavformat:媒体文件容器格式处理库,音视频混流处理MediaMuxer和音视频解析MediaDemuxer:需要用到该库进行码流文件解析和混流
libavcodec:编解码器库
libswresample:音频格式转换和重采样处理的库
libswscale:视频格式转换和缩放处理的库
libavfilter:音视频滤镜、特效处理的库
libavdevice:设备操作库
libavutil:Utility辅助函数库,提供一些独立的辅助函数功能
重点数据结构和基础
1、音视频数据帧AVFrame,表示未进行编码压缩的音视频数据
typedef struct AVFrame{
......
// 视频帧图像数据 或者 音频帧PCM数据, 根据不同的格式有不同的存放方式
// 对于视频帧:RGB/RGBA 格式时 data[0] 中一次存放每个像素的RGB/RGBA数据
// YUV420 格式时 data[0]存放Y数据; data[1]存放U数据; data[2]存放V数据
// 对于音频帧: data[0]存放左声道数据; data[1]存放右声道数据
uint8_t *data[AV_NUM_DATA_POINTERS];
// 行字节跨度, 相当于stride
// 对于视频帧: 上下两行同一列像素相差的字节数,例如:对于RGBA通常是(width*4), 但是有时FFMPEG内部会有扩展, 可能会比这个值大
// 对于音频帧: 单个通道中所有采样占用的字节数
int linesize[AV_NUM_DATA_POINTERS];
int format;// 视频帧是图像格式,音频帧是采样格式
int64_t pts;// 当前数据帧的时间戳
int width,height;// 仅用于视频帧,宽度高度
int key_frame;// 仅用于视频,当前是否是I帧
int sample_rate;// 音频,采样率
uint64_t channel_layout;// 音频,通道类型
int nb_samples;// 音频,样本数量
}AVFrame;
常用的操作函数
AVFrame *av_frame_alloc(void); // 分配一个数据帧结构
AVFrame *av_frame_clone(const AVFrame *src); // 完整的克隆数据帧结构, 包括其内部数据
void av_frame_free(AVFrame **frame); // 释放数据帧结构及其内部数据
int av_frame_ref(AVFrame *dst, const AVFrame *src); // 增加引用计数
void av_frame_unref(AVFrame *frame); // 减少引用计数
2、音视频数据包AVPacket,表示压缩后的音视频数据
typedef struct AVPacket{
......
int64_t pts;// 显示时间戳
int64_t dts;// 解码时间戳,对于音频来说,通常与pts相同
uint8_t *data;// 实际压缩后的视频或者音频数据
int size;// 压缩后的数据大小
int stream_index;// 流索引值,在媒体文件中,使用0,1来区分音视频流
int flags;
int64_t duration;// 渲染显示时长
int64_t pos;// 当前包在流中的位置,-1表示未知
......
}AVPacket;
常用的操作函数
AVPacket *av_packet_alloc(void); // 分配一个数据包结构体
AVPacket *av_packet_clone(const AVPacket *src); // 完整赋值一个数据包
void av_packet_free(AVPacket **pkt); // 释放数据包结构及其内部的数据
void av_init_packet(AVPacket *pkt); // 初始化数据包结构,可选字段都设置为默认值
int av_new_packet(AVPacket *pkt, int size); // 根据指定大小创建包结构中的数据
3、时间基和时间戳
时间基time_base:时间刻度的概念
eg:time_base = 1/200,相当于将1000ms均分为200份,每个时间单位是5ms,当视频帧的pts=1173时,对应的实际时刻点是1173*5=5865ms
媒体文件解析分流
文件处理:1、音频流 2、视频流
流媒体文件相关的API:libavformat库中的函数
1、avformat_open_input()/avformat_close_input()
2、avformat_seek_file()——暂时不推荐使用
3、av_read_frame()
解码器相关API:libavcodec库中的函数
1、avcodec_alloc_context3()/avcodec_free_context()
2、avcodec_parameters_to_context()
3、avcodec_open2()/avcodec_close()
4、avcodec_send_packet()/avcodec_receive_frame()
本文由 szr 创作,采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
最后编辑时间为: Sep 14, 2021 at 08:44 pm
Premier Limo Service: Elevate Your Seattle Experience
Experience Seattle in unparalleled style and comfort with our top-tier Limo Service. We specialize in creating exceptional experiences through our expertly curated Seattle Wine Tours and luxurious Seattle Wedding Limousines .
Seattle Wine Tours:
Embark on a journey through the picturesque vineyards and wineries of the Pacific Northwest. Our knowledgeable chauffeurs will guide you through customizable wine tour routes, ensuring you visit the finest locales. Sit back in our plush limousines and enjoy the scenic drive as you sip on some of the world's best wines. Perfect for both intimate gatherings and larger groups, our wine tours are designed to indulge your senses.
Seattle Wedding Limousines:
Make your special day even more memorable with our elegant wedding limousines. Our fleet of immaculate vehicles is designed to provide the ultimate in luxury and comfort. Whether you're planning a grand entrance or a romantic getaway, our professional chauffeurs will ensure your transportation is seamless and stress-free. Let us handle the logistics so you can focus on what truly matters—celebrating your love.
The greatest transport for tourist routes:
Discover the Emerald City like never before with our premier tourist routes. From the iconic Space Needle to the vibrant Pike Place Market, our experienced drivers will take you on a journey through Seattle's must-see attractions. Whether you're a first-time visitor or a local looking to rediscover your city, our luxury limousines offer the greatest transport for tourist routes . Enjoy panoramic views, knowledgeable insights, and the comfort of a private tour.
At our Limo Service, we are committed to providing unmatched luxury and service. Whether you're planning a romantic getaway, a corporate event, or a sightseeing tour, we ensure that every ride is an experience to remember. Contact us today to book your luxury transportation and elevate your Seattle adventure.
Heya i am for thee first time here. I came across this board and I find It really useful & it helped me out a lot.
recipes.snydle.com
Официальный сайт Vodka Casino: регистрация и вход в Водка Казино онлайн. Vodka Casino предлагает пользователям уникальные возможности для игры в онлайн-казино Казино Vodka бонусы
купить аттестат о среднем профессиональном образовании купить аттестат о среднем профессиональном образовании .
{Usually, you can get a match deposit welcome bonus with free spins to play online new slots.|However,
it’s essential to use this feature wisely and be aware of
the potential risks involved.|For cryptocurrency
users, Slots LV offers enhanced bonuses, making it an attractive option for those looking to
play with digital currency.|Moreover, these RNG-tested games ensure a
fair gambling experience for every player.|Another subcategory of video slots that deserves special mention is the altogether rather narrow group of games dedicated to music.|There are many slot machine apps
available for iPhone and Android OS and they almost all
work the same way.|Best video slot machines combine high RTP with innovative features.|You do have
the potential to receive bonus offers to play real money casino games, but free slots for fun do not
payout real money.|This feature typically involves guessing the
color or suit of a hidden card to double or quadruple
your winnings.|Remember that playing with Sweeps Coins gives you a chance to redeem
for cash prizes and gift cards at this leading site.|RAM and ROM size do not affect overall performance with the modern mobile compatibility settings.|With 5
reels and 25 pay lines, there are numerous chances to land
winning combinations.|Given that online casinos show many
benefits to gamers, players can enjoy a range of slots for fun these days.|Some modern 5-reel slots have expandable reels that can accommodate thousands
of win ways.|You cannot retrigger Re-Spins during
the feature, nor can you activate the Pegasus Bonus
or the Once Bitten Bonus features during Re-Spins.|If you manage to land
two wilds, your winnings will be quadrupled.|When you find a perfect
3D casino online for you, be sure to register.|If you’re looking for
the 3D slots with the highest RTP, you’re in the right
place!|In each of these spins, your chances of winning will be boosted, usually thanks to extra in-game features, boosted reels, or multipliers.|The value tells how much of the total stake will be paid out
to the players in the long run.|Produced by Light & Wonder,
this game builds on its predecessor’s success with an additional wheel for enhanced prizes.|For example, a 3D Slots machine
with a 90% RTP will pay £90 back out for every £100
put in, leaving the casino with a 10% cut.|Another entry
courtesy of Microgaming, Frozen Diamonds has not received the recognition it deserves.|It’s a
combination of advanced graphics, immersive sound design, and interactive elements that create a
multi-layered experience.|Recently, however, there
has been an entirely new category of slot games that started to
get attention amongst online gamblers, and that is 3D slots.|One of the most popular BetSoft slots is The Slotfather, known for its engaging
gameplay and unique theme.|It created two of the most iconic casino games
of all time – Starburst and Gonzo’s Quest – along with slots like Twin Spin, Reel Rush, Narcos, Dead or Alive, and Mega Fortune.|Imagine playing
a slot game where you are transported into the virtual world, able to
interact with the game environment in a fully immersive experience.|If you don’t
know exactly what this means, we are here to explain.|You can still expect fewer
paylines from these modern classic online slots, which ensures betting totals remain low while winning potential always impresses.|In addition, popular themes on US slot sites
include pets, carnivals, fairytales, and luxury.|If you deposit with prepaid cards,
you'll need to choose a different cashout option, such as e-wallets.|Let’s take a look at some of the top titles in the market, known for their stunning visuals, engaging storylines, and exciting
gameplay.|Engage your punters and customers with the provided fascinating effects that come along with our slot game development services.|With
such fierce competition between casinos, they can’t afford to be offering
low payouts – especially online where customers only need to switch websites to
get a better percentage.|Cascading reels replace traditional spinning reels with falling symbols.|Bowen specializes in writing
on a variety of subjects, including roulette, blackjack,
video poker, sports betting, and more.|When choosing 3D slots to
play, it’s important to consider the quality of the
software providers.|Social slots are a great way for new players to understand the mechanics and rules without financial risk.|It’s the
place where both the rookie and the old-hand slot players find common ground
in user-friendly interfaces and butter-smooth gameplay.|The
jackpot could be fixed (a pre-set amount for all players) or progressive (an increasing pool donated by bets).|This machine only
had three drums (now known as reels) and five symbols.|You receive a prize for every number you bet on that matches the winning numbers.|For a long time, playing online
slots for real money was not legal in the US.|The company develops software for land-based IGT casinos,
mobile systems and online casinos.|You have
as much chance of winning as an experienced player, it just depends how the reels land.|For over 20
years, we have been on a mission to help slots players find the best games, reviews and
insights by sharing our knowledge and expertise in a fun and
friendly way.|BetMGM provides everything a player could need from a slots site.|Mechanics vary, so read all about
it to learn how to participate.|These slots feature
five or more reels and a larger number of paylines compared to the classic ones,
offering you more opportunities to win.|Gold Rush Gus offers a cartoonish mining adventure
with engaging graphics and interactive gameplay.|Bonus features not
only boost the fun of free slots, they also enhance their unique story and world.|Rest
assured that we will only recommend legal online slots sites that carry the necessary licenses
in the states they operate.|To give you the best user experience every time you play, our dedicated customer support team is always on standby and ready to assist you with any questions you may have.|You don't need much to
enjoy the excitement of playing slots online.|A lot of our players say
that once you discover the fun to be had, you'll never
want to go back to plain old slots.|Medusa offers a Gamble feature
that affords winning spins the opportunity to double or quadruple that
payout.|Some slots already allow toggling background
music or sound effects on/off.|While 2D slots are colourful
and fun to look at, they don’t feel as good as
a 3D slot.|Some casinos pack a punch with tons of slots, a mix of different
game providers, and even some exclusive titles you
won't find anywhere else.|If you’re wondering how to play slot machines in a way
to increase your Chances to Win, be aware of the following tips.|The slot
machine has 6 bonus features with a varying number of free spins.|The free
slot machines are identical by their operation to regular slots found in online casinos.|If you instead land the Monkey symbol right in the middle of the
grid, the Click Me Crazy!|If you enjoy slots with immersive themes and
rewarding features, Book of Dead is a must-try.|This is available in demo mode, and it’s a perfect
example to get familiar with the game’s features without any risk.|In general terms, yes, except that
you don’t have the option to play for real money in free slots.|Enjoyable gaming session by
first understanding the rules of the game.|Known for its vibrant graphics and fast-paced gameplay, Starburst offers
a high RTP of 96.09%, which makes it particularly attractive
to those looking for frequent wins.|On this page, you
will find a complete list of slots collected by SlotsUp’s team since 2015.|The
legendary Mega Moolah slot has repeatedly made headlines,
with a Belgian player landing a staggering $23.6 million jackpot
in April 2021.|Each game is a doorway to a new realm, waiting for you to step in and claim its
treasures.|The element of surprise and the fantastic gameplay of
Bonanza, which was the first Megaways slot, has led to a wave of classic slots
reinvented using this format.|Whereas there can be hundreds of
games inside land casinos, there can be thousands of
games in an online casino.|We give you the option of a fun, hassle-free gaming experience, but
we will be by your side if you choose something different.|Selecting the right online casino is crucial for a safe and enjoyable gaming experience.|With
Здесь можно сейф цена москва сейфы купить
Существует множество способов накрутки лайков. Некоторые из них легитимны и позволяют вам получить настоящую аудиторию, а другие могут привести к бану аккаунта. Важно выбирать правильные методы, чтобы избежать негативных последствий накрутка лайков в ТТ
https://www.estrategias.directorio-de-casinos-mx.com
Download application online casino Estrategias - play now!
www.estrategias.directorio-de-casinos-mx.com
Обладает тонизирующим и антиоксидантным свойствами, лифтинг эффектом, улучшает упругость, предотвращает старение кожи, помогает избежать преждевременного появления большого количества морщин, уменьшает пигментацию, способствует уменьшению проявлений сосудистой сеточки на лице, способствует устранению воспалительных процессов на коже, эпителизации https://bioquant-garyaev.com/product/biomatritsa/
Тут можно преобрести купить сейф для ружья москва заказать оружейный сейф