| [9816] | 1 | #include "FFmpegDecoderVideo.hpp" |
|---|
| 2 | |
|---|
| 3 | #include <osg/Notify> |
|---|
| [9860] | 4 | #include <osg/Timer> |
|---|
| [9816] | 5 | |
|---|
| 6 | #include <stdexcept> |
|---|
| 7 | #include <string.h> |
|---|
| 8 | |
|---|
| 9 | namespace osgFFmpeg { |
|---|
| 10 | |
|---|
| 11 | FFmpegDecoderVideo::FFmpegDecoderVideo(PacketQueue & packets, FFmpegClocks & clocks) : |
|---|
| 12 | m_packets(packets), |
|---|
| 13 | m_clocks(clocks), |
|---|
| 14 | m_stream(0), |
|---|
| 15 | m_context(0), |
|---|
| 16 | m_codec(0), |
|---|
| 17 | m_packet_data(0), |
|---|
| 18 | m_bytes_remaining(0), |
|---|
| 19 | m_packet_pts(AV_NOPTS_VALUE), |
|---|
| [9860] | 20 | m_writeBuffer(0), |
|---|
| [9816] | 21 | m_user_data(0), |
|---|
| 22 | m_publish_func(0), |
|---|
| [9857] | 23 | m_exit(false) |
|---|
| 24 | #ifdef USE_SWSCALE |
|---|
| 25 | ,m_swscale_ctx(0) |
|---|
| 26 | #endif |
|---|
| [9816] | 27 | { |
|---|
| 28 | |
|---|
| 29 | } |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | FFmpegDecoderVideo::~FFmpegDecoderVideo() |
|---|
| 34 | { |
|---|
| [9912] | 35 | osg::notify(osg::INFO)<<"Destructing FFmpegDecoderVideo..."<<std::endl; |
|---|
| [9861] | 36 | |
|---|
| [9869] | 37 | |
|---|
| [9816] | 38 | if (isRunning()) |
|---|
| 39 | { |
|---|
| 40 | m_exit = true; |
|---|
| [9869] | 41 | #if 0 |
|---|
| 42 | while(isRunning()) { OpenThreads::YieldCurrentThread(); } |
|---|
| 43 | #else |
|---|
| [9816] | 44 | join(); |
|---|
| [9869] | 45 | #endif |
|---|
| [9816] | 46 | } |
|---|
| [9854] | 47 | |
|---|
| [9857] | 48 | #ifdef USE_SWSCALE |
|---|
| [9854] | 49 | if (m_swscale_ctx) |
|---|
| 50 | { |
|---|
| 51 | sws_freeContext(m_swscale_ctx); |
|---|
| 52 | m_swscale_ctx = 0; |
|---|
| 53 | } |
|---|
| [9857] | 54 | #endif |
|---|
| [9861] | 55 | |
|---|
| [9912] | 56 | osg::notify(osg::INFO)<<"Destructed FFmpegDecoderVideo"<<std::endl; |
|---|
| [9816] | 57 | } |
|---|
| 58 | |
|---|
| 59 | |
|---|
| 60 | |
|---|
| 61 | void FFmpegDecoderVideo::open(AVStream * const stream) |
|---|
| 62 | { |
|---|
| 63 | m_stream = stream; |
|---|
| 64 | m_context = stream->codec; |
|---|
| 65 | |
|---|
| 66 | |
|---|
| 67 | |
|---|
| 68 | m_width = m_context->width; |
|---|
| 69 | m_height = m_context->height; |
|---|
| 70 | findAspectRatio(); |
|---|
| 71 | |
|---|
| 72 | |
|---|
| 73 | m_alpha_channel = (m_context->pix_fmt == PIX_FMT_YUVA420P); |
|---|
| 74 | |
|---|
| 75 | |
|---|
| 76 | m_frame_rate = av_q2d(stream->r_frame_rate); |
|---|
| 77 | |
|---|
| 78 | |
|---|
| 79 | m_codec = avcodec_find_decoder(m_context->codec_id); |
|---|
| 80 | |
|---|
| 81 | if (m_codec == 0) |
|---|
| 82 | throw std::runtime_error("avcodec_find_decoder() failed"); |
|---|
| 83 | |
|---|
| 84 | |
|---|
| 85 | |
|---|
| 86 | |
|---|
| 87 | |
|---|
| 88 | |
|---|
| 89 | if (avcodec_open(m_context, m_codec) < 0) |
|---|
| 90 | throw std::runtime_error("avcodec_open() failed"); |
|---|
| 91 | |
|---|
| 92 | |
|---|
| [9826] | 93 | m_frame.reset(avcodec_alloc_frame()); |
|---|
| [9816] | 94 | |
|---|
| 95 | |
|---|
| [9826] | 96 | m_frame_rgba.reset(avcodec_alloc_frame()); |
|---|
| [9860] | 97 | m_buffer_rgba[0].resize(avpicture_get_size(PIX_FMT_RGB32, width(), height())); |
|---|
| 98 | m_buffer_rgba[1].resize(m_buffer_rgba[0].size()); |
|---|
| [9816] | 99 | |
|---|
| 100 | |
|---|
| [9860] | 101 | avpicture_fill((AVPicture *) (m_frame_rgba).get(), &(m_buffer_rgba[0])[0], PIX_FMT_RGB32, width(), height()); |
|---|
| [9816] | 102 | |
|---|
| 103 | |
|---|
| 104 | m_context->opaque = this; |
|---|
| 105 | m_context->get_buffer = getBuffer; |
|---|
| 106 | m_context->release_buffer = releaseBuffer; |
|---|
| 107 | } |
|---|
| 108 | |
|---|
| 109 | |
|---|
| [9869] | 110 | void FFmpegDecoderVideo::close(bool waitForThreadToExit) |
|---|
| 111 | { |
|---|
| 112 | m_exit = true; |
|---|
| 113 | |
|---|
| 114 | if (isRunning() && waitForThreadToExit) |
|---|
| 115 | { |
|---|
| 116 | while(isRunning()) { OpenThreads::Thread::YieldCurrentThread(); } |
|---|
| 117 | } |
|---|
| 118 | } |
|---|
| [9816] | 119 | |
|---|
| [9869] | 120 | |
|---|
| [9816] | 121 | void FFmpegDecoderVideo::run() |
|---|
| 122 | { |
|---|
| 123 | try |
|---|
| 124 | { |
|---|
| 125 | decodeLoop(); |
|---|
| 126 | } |
|---|
| 127 | |
|---|
| 128 | catch (const std::exception & error) |
|---|
| 129 | { |
|---|
| 130 | osg::notify(osg::WARN) << "FFmpegDecoderVideo::run : " << error.what() << std::endl; |
|---|
| 131 | } |
|---|
| 132 | |
|---|
| 133 | catch (...) |
|---|
| 134 | { |
|---|
| 135 | osg::notify(osg::WARN) << "FFmpegDecoderVideo::run : unhandled exception" << std::endl; |
|---|
| 136 | } |
|---|
| 137 | } |
|---|
| 138 | |
|---|
| 139 | |
|---|
| 140 | |
|---|
| 141 | void FFmpegDecoderVideo::decodeLoop() |
|---|
| 142 | { |
|---|
| 143 | FFmpegPacket packet; |
|---|
| 144 | double pts; |
|---|
| 145 | |
|---|
| 146 | while (! m_exit) |
|---|
| 147 | { |
|---|
| 148 | |
|---|
| 149 | |
|---|
| 150 | while (m_bytes_remaining > 0) |
|---|
| 151 | { |
|---|
| 152 | |
|---|
| 153 | |
|---|
| 154 | m_packet_pts = packet.packet.pts; |
|---|
| 155 | |
|---|
| 156 | |
|---|
| 157 | |
|---|
| 158 | int frame_finished = 0; |
|---|
| 159 | |
|---|
| 160 | const int bytes_decoded = avcodec_decode_video(m_context, m_frame.get(), &frame_finished, m_packet_data, m_bytes_remaining); |
|---|
| 161 | |
|---|
| 162 | if (bytes_decoded < 0) |
|---|
| 163 | throw std::runtime_error("avcodec_decode_video failed()"); |
|---|
| 164 | |
|---|
| 165 | m_bytes_remaining -= bytes_decoded; |
|---|
| 166 | m_packet_data += bytes_decoded; |
|---|
| 167 | |
|---|
| 168 | |
|---|
| 169 | |
|---|
| [10414] | 170 | if (packet.packet.dts == int64_t(AV_NOPTS_VALUE) && |
|---|
| [10088] | 171 | m_frame->opaque != 0 && |
|---|
| [10414] | 172 | *reinterpret_cast<const int64_t*>(m_frame->opaque) != int64_t(AV_NOPTS_VALUE)) |
|---|
| [9816] | 173 | { |
|---|
| 174 | pts = *reinterpret_cast<const int64_t*>(m_frame->opaque); |
|---|
| 175 | } |
|---|
| [10414] | 176 | else if (packet.packet.dts != int64_t(AV_NOPTS_VALUE)) |
|---|
| [9816] | 177 | { |
|---|
| 178 | pts = packet.packet.dts; |
|---|
| 179 | } |
|---|
| 180 | else |
|---|
| 181 | { |
|---|
| 182 | pts = 0; |
|---|
| 183 | } |
|---|
| 184 | |
|---|
| 185 | pts *= av_q2d(m_stream->time_base); |
|---|
| 186 | |
|---|
| 187 | |
|---|
| 188 | if (frame_finished) |
|---|
| 189 | { |
|---|
| 190 | const double synched_pts = m_clocks.videoSynchClock(m_frame.get(), av_q2d(m_stream->time_base), pts); |
|---|
| 191 | const double frame_delay = m_clocks.videoRefreshSchedule(synched_pts); |
|---|
| 192 | |
|---|
| [10161] | 193 | publishFrame(frame_delay, m_clocks.audioDisabled()); |
|---|
| [9816] | 194 | } |
|---|
| 195 | } |
|---|
| 196 | |
|---|
| 197 | |
|---|
| 198 | |
|---|
| 199 | pts = 0; |
|---|
| 200 | |
|---|
| 201 | if (packet.valid()) |
|---|
| 202 | packet.clear(); |
|---|
| 203 | |
|---|
| 204 | bool is_empty = true; |
|---|
| 205 | packet = m_packets.timedPop(is_empty, 10); |
|---|
| 206 | |
|---|
| 207 | if (! is_empty) |
|---|
| 208 | { |
|---|
| 209 | if (packet.type == FFmpegPacket::PACKET_DATA) |
|---|
| 210 | { |
|---|
| 211 | m_bytes_remaining = packet.packet.size; |
|---|
| 212 | m_packet_data = packet.packet.data; |
|---|
| 213 | } |
|---|
| 214 | else if (packet.type == FFmpegPacket::PACKET_FLUSH) |
|---|
| 215 | { |
|---|
| 216 | avcodec_flush_buffers(m_context); |
|---|
| 217 | m_clocks.rewindVideo(); |
|---|
| 218 | } |
|---|
| 219 | } |
|---|
| 220 | } |
|---|
| 221 | } |
|---|
| 222 | |
|---|
| 223 | |
|---|
| 224 | |
|---|
| 225 | void FFmpegDecoderVideo::findAspectRatio() |
|---|
| 226 | { |
|---|
| [9910] | 227 | float ratio = 0.0f; |
|---|
| [9816] | 228 | |
|---|
| 229 | if (m_context->sample_aspect_ratio.num != 0) |
|---|
| [9910] | 230 | ratio = float(av_q2d(m_context->sample_aspect_ratio)); |
|---|
| [9816] | 231 | |
|---|
| [9910] | 232 | if (ratio <= 0.0f) |
|---|
| 233 | ratio = 1.0f; |
|---|
| [9816] | 234 | |
|---|
| [9910] | 235 | m_pixel_aspect_ratio = ratio; |
|---|
| [9816] | 236 | } |
|---|
| 237 | |
|---|
| [9960] | 238 | int FFmpegDecoderVideo::convert(AVPicture *dst, int dst_pix_fmt, AVPicture *src, |
|---|
| [9854] | 239 | int src_pix_fmt, int src_width, int src_height) |
|---|
| 240 | { |
|---|
| [9860] | 241 | osg::Timer_t startTick = osg::Timer::instance()->tick(); |
|---|
| [9854] | 242 | #ifdef USE_SWSCALE |
|---|
| 243 | if (m_swscale_ctx==0) |
|---|
| 244 | { |
|---|
| [9965] | 245 | m_swscale_ctx = sws_getContext(src_width, src_height, (PixelFormat) src_pix_fmt, |
|---|
| 246 | src_width, src_height, (PixelFormat) dst_pix_fmt, |
|---|
| [9860] | 247 | SWS_BICUBIC, NULL, NULL, NULL); |
|---|
| [9854] | 248 | } |
|---|
| 249 | |
|---|
| [9857] | 250 | |
|---|
| [9912] | 251 | osg::notify(osg::INFO)<<"Using sws_scale "; |
|---|
| [9960] | 252 | |
|---|
| [9860] | 253 | int result = sws_scale(m_swscale_ctx, |
|---|
| [9960] | 254 | (src->data), (src->linesize), 0, src_height, |
|---|
| [9933] | 255 | (dst->data), (dst->linesize)); |
|---|
| [9854] | 256 | #else |
|---|
| [9857] | 257 | |
|---|
| [9912] | 258 | osg::notify(osg::INFO)<<"Using img_convert "; |
|---|
| [9860] | 259 | |
|---|
| 260 | int result = img_convert(dst, dst_pix_fmt, src, |
|---|
| 261 | src_pix_fmt, src_width, src_height); |
|---|
| 262 | |
|---|
| [9854] | 263 | #endif |
|---|
| [9860] | 264 | osg::Timer_t endTick = osg::Timer::instance()->tick(); |
|---|
| [9912] | 265 | osg::notify(osg::INFO)<<" time = "<<osg::Timer::instance()->delta_m(startTick,endTick)<<"ms"<<std::endl; |
|---|
| [9860] | 266 | |
|---|
| 267 | return result; |
|---|
| [9854] | 268 | } |
|---|
| [9816] | 269 | |
|---|
| 270 | |
|---|
| [10161] | 271 | void FFmpegDecoderVideo::publishFrame(const double delay, bool audio_disabled) |
|---|
| [9816] | 272 | { |
|---|
| 273 | |
|---|
| 274 | if (m_publish_func == 0) |
|---|
| 275 | return; |
|---|
| 276 | |
|---|
| [10161] | 277 | #if 1 |
|---|
| 278 | |
|---|
| [9816] | 279 | |
|---|
| [10161] | 280 | if (!audio_disabled && delay < -0.010) |
|---|
| 281 | return; |
|---|
| 282 | #else |
|---|
| 283 | |
|---|
| 284 | |
|---|
| [9816] | 285 | if (delay < -0.010) |
|---|
| 286 | return; |
|---|
| [10161] | 287 | #endif |
|---|
| 288 | |
|---|
| [9960] | 289 | AVPicture * const src = (AVPicture *) m_frame.get(); |
|---|
| [9816] | 290 | AVPicture * const dst = (AVPicture *) m_frame_rgba.get(); |
|---|
| 291 | |
|---|
| [9860] | 292 | |
|---|
| 293 | avpicture_fill((AVPicture *) (m_frame_rgba).get(), &(m_buffer_rgba[m_writeBuffer])[0], PIX_FMT_RGB32, width(), height()); |
|---|
| 294 | |
|---|
| [9816] | 295 | |
|---|
| 296 | |
|---|
| 297 | if (m_context->pix_fmt == PIX_FMT_YUVA420P) |
|---|
| 298 | yuva420pToRgba(dst, src, width(), height()); |
|---|
| 299 | else |
|---|
| [9854] | 300 | convert(dst, PIX_FMT_RGB32, src, m_context->pix_fmt, width(), height()); |
|---|
| [9816] | 301 | |
|---|
| 302 | |
|---|
| 303 | int i_delay = static_cast<int>(delay * 1000000 + 0.5); |
|---|
| 304 | |
|---|
| 305 | while (i_delay > 1000) |
|---|
| 306 | { |
|---|
| 307 | |
|---|
| 308 | if (m_exit) |
|---|
| 309 | return; |
|---|
| 310 | |
|---|
| 311 | const int micro_delay = (std::min)(1000000, i_delay); |
|---|
| 312 | |
|---|
| 313 | OpenThreads::Thread::microSleep(micro_delay); |
|---|
| 314 | |
|---|
| 315 | i_delay -= micro_delay; |
|---|
| 316 | } |
|---|
| 317 | |
|---|
| [9860] | 318 | m_writeBuffer = 1-m_writeBuffer; |
|---|
| 319 | |
|---|
| [9816] | 320 | m_publish_func(* this, m_user_data); |
|---|
| 321 | } |
|---|
| 322 | |
|---|
| 323 | |
|---|
| 324 | |
|---|
| [9960] | 325 | void FFmpegDecoderVideo::yuva420pToRgba(AVPicture * const dst, AVPicture * const src, int width, int height) |
|---|
| [9816] | 326 | { |
|---|
| [9854] | 327 | convert(dst, PIX_FMT_RGB32, src, m_context->pix_fmt, width, height); |
|---|
| [9816] | 328 | |
|---|
| 329 | const size_t bpp = 4; |
|---|
| 330 | |
|---|
| 331 | uint8_t * a_dst = dst->data[0] + 3; |
|---|
| 332 | |
|---|
| 333 | for (int h = 0; h < height; ++h) { |
|---|
| 334 | |
|---|
| 335 | const uint8_t * a_src = src->data[3] + h * src->linesize[3]; |
|---|
| 336 | |
|---|
| 337 | for (int w = 0; w < width; ++w) { |
|---|
| 338 | *a_dst = *a_src; |
|---|
| 339 | a_dst += bpp; |
|---|
| 340 | a_src += 1; |
|---|
| 341 | } |
|---|
| 342 | } |
|---|
| 343 | } |
|---|
| 344 | |
|---|
| 345 | |
|---|
| 346 | |
|---|
| 347 | int FFmpegDecoderVideo::getBuffer(AVCodecContext * const context, AVFrame * const picture) |
|---|
| 348 | { |
|---|
| 349 | const FFmpegDecoderVideo * const this_ = reinterpret_cast<const FFmpegDecoderVideo*>(context->opaque); |
|---|
| 350 | |
|---|
| 351 | const int result = avcodec_default_get_buffer(context, picture); |
|---|
| 352 | int64_t * p_pts = reinterpret_cast<int64_t*>( av_malloc(sizeof(int64_t)) ); |
|---|
| 353 | |
|---|
| 354 | *p_pts = this_->m_packet_pts; |
|---|
| 355 | picture->opaque = p_pts; |
|---|
| 356 | |
|---|
| 357 | return result; |
|---|
| 358 | } |
|---|
| 359 | |
|---|
| 360 | |
|---|
| 361 | |
|---|
| 362 | void FFmpegDecoderVideo::releaseBuffer(AVCodecContext * const context, AVFrame * const picture) |
|---|
| 363 | { |
|---|
| 364 | if (picture != 0) |
|---|
| 365 | av_freep(&picture->opaque); |
|---|
| 366 | |
|---|
| 367 | avcodec_default_release_buffer(context, picture); |
|---|
| 368 | } |
|---|
| 369 | |
|---|
| 370 | |
|---|
| 371 | |
|---|
| 372 | } |
|---|