1. 程式人生 > >vlc sdl 播放視訊可隨視窗改變大小

vlc sdl 播放視訊可隨視窗改變大小

#include <stdio.h>
#include <stdint.h>
#include <math.h>
#include <stdlib.h>
#include <assert.h>
 
#include <SDL2/SDL.h>
#include <SDL2/SDL_mutex.h>
 
#include <vlc/vlc.h>
 
#define VIDEOWIDTH 1920
#define VIDEOHEIGHT 1080
 
struct context {
    SDL_Renderer *renderer;
    SDL_Texture *texture;
    SDL_mutex *mutex;
    int n;
 
    SDL_Rect displayrect;
    int window_w;
    int window_h;
};
 
// VLC prepares to render a video frame.
static void *lock(void *data, void **p_pixels) {
 
    struct context *c = (struct context *) data;
 
    int pitch;
    SDL_LockMutex(c->mutex);
    SDL_LockTexture(c->texture, NULL, p_pixels, &pitch);
 
    return NULL ; // Picture identifier, not needed here.
}
 
// VLC just rendered a video frame.
static void unlock(void *data, void *id, void * const *p_pixels) {
 
    struct context *c = (struct context *) data;
/*
 
    uint16_t *pixels = (uint16_t *) *p_pixels;
 
    // We can also render stuff.
    int x, y;
    for (y = 10; y < 40; y++) {
        for (x = 10; x < 40; x++) {
            if (x < 13 || y < 13 || x > 36 || y > 36) {
                pixels[y * VIDEOWIDTH + x] = 0xffff;
            } else {
                // RV16 = 5+6+5 pixels per color, BGR.
                pixels[y * VIDEOWIDTH + x] = 0x02ff;
            }
        }
    }
*/
 
    SDL_UnlockTexture(c->texture);
    SDL_UnlockMutex(c->mutex);
}
 
 
 
 
// VLC wants to display a video frame.
static void display(void *data, void *id) {
 
    struct context *ctx = (struct context *) data;
    ctx->displayrect.x = 0;
    ctx->displayrect.y = 0;
    ctx->displayrect.w = ctx->window_w;
    ctx->displayrect.h = ctx->window_h;
 
//    SDL_SetRenderDrawColor(c->renderer, 0, 80, 0, 255);
    SDL_RenderClear(ctx->renderer);
    SDL_RenderCopy(ctx->renderer, ctx->texture, NULL, &ctx->displayrect);
    SDL_RenderPresent(ctx->renderer);
}
 
static void quit(int c) {
    SDL_Quit();
    exit(c);
}
 
int main(int argc, char *argv[]) {
 
    struct context ctx;
 
    libvlc_instance_t *libvlc;
    libvlc_media_t *m;
    libvlc_media_player_t *mp;
    char const *vlc_argv[] = { "--no-audio", // Don't play audio.
            "--no-xlib", // Don't use Xlib.
 
            // Apply a video filter.
            //"--video-filter", "sepia",
            //"--sepia-intensity=200"
            };
    int vlc_argc = sizeof(vlc_argv) / sizeof(*vlc_argv);
 
    SDL_Event event;
    int done = 0, action = 0, pause = 0, n = 0;
 
//    if(argc < 2) {
//        printf("Usage: %s <filename>\n", argv[0]);
//        return EXIT_FAILURE;
//    }
 
    // Initialise libSDL.
    if (SDL_Init(SDL_INIT_VIDEO) < 0) {
        printf("Could not initialize SDL: %s.\n", SDL_GetError());
        return EXIT_FAILURE;
    }
 
    // Create SDL graphics objects.
    SDL_Window * window = SDL_CreateWindow("Fartplayer", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 1280, 720,
            SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE);
    ctx.window_w = 1280;
    ctx.window_h = 720;
 
    if (!window) {
        fprintf(stderr, "Couldn't create window: %s\n", SDL_GetError());
        quit(3);
    }
 
    int nRenderDrivers = SDL_GetNumRenderDrivers();
    int i = 0;
    for (; i < nRenderDrivers; i++) {
        SDL_RendererInfo info;
        SDL_GetRenderDriverInfo(i, &info);    //d3d
        printf("====info name %d: %s =====\n", i, info.name);
        printf("====max_texture_height %d  =====\n", i, info.max_texture_height);
        printf("====max_texture_width %d  =====\n", i, info.max_texture_width);
 
    }
 
    SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "linear");
    SDL_SetHint(SDL_HINT_RENDER_VSYNC, "1");
 
    ctx.renderer = SDL_CreateRenderer(window, 1, 0);
    if (!ctx.renderer) {
        fprintf(stderr, "Couldn't create renderer: %s\n", SDL_GetError());
        quit(4);
    }
 
    ctx.texture = SDL_CreateTexture(ctx.renderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STREAMING, VIDEOWIDTH, VIDEOHEIGHT);
    if (!ctx.texture) {
        fprintf(stderr, "Couldn't create texture: %s\n", SDL_GetError());
        quit(5);
    }
 
    ctx.mutex = SDL_CreateMutex();
 
    // If you don't have this variable set you must have plugins directory
    // with the executable or libvlc_new() will not work!
    printf("VLC_PLUGIN_PATH=%s\n", getenv("VLC_PLUGIN_PATH"));
 
    // Initialise libVLC.
    libvlc = libvlc_new(vlc_argc, vlc_argv);
    if (NULL == libvlc) {
        printf("LibVLC initialization failure.\n");
        return EXIT_FAILURE;
    }
 
    m = libvlc_media_new_path(libvlc, "./test.mp4");
    mp = libvlc_media_player_new_from_media(m);
    libvlc_media_release(m);
 
    libvlc_video_set_callbacks(mp, lock, unlock, display, &ctx);
    libvlc_video_set_format(mp, "RV32", VIDEOWIDTH, VIDEOHEIGHT, VIDEOWIDTH * 4);
    libvlc_media_player_play(mp);
 
    // Main loop.
    while (!done ) {
 
        action = 0;
 
        // Keys: enter (fullscreen), space (pause), escape (quit).
        while (SDL_PollEvent(&event)) {
 
            switch (event.type) {
            case SDL_WINDOWEVENT:
                if (event.window.event == SDL_WINDOWEVENT_RESIZED) {
                    SDL_RenderSetViewport(ctx.renderer, NULL );
                    ctx.displayrect.w = ctx.window_w = event.window.data1;
                    ctx.displayrect.h = ctx.window_h = event.window.data2;
                }
                break;
            case SDL_QUIT:
                done = 1;
                break;
            case SDL_KEYDOWN:
                action = event.key.keysym.sym;
                break;
            }
        }
 
        switch (action) {
        case SDLK_ESCAPE:
        case SDLK_q:
            done = 1;
            break;
        case ' ':
            printf("Pause toggle.\n");
            pause = !pause;
            break;
        }
        if (!pause) {
            ctx.n++;
        }
 
        SDL_Delay(100);
    }
 
    // Stop stream and clean up libVLC.
    libvlc_media_player_stop(mp);
    libvlc_media_player_release(mp);
    libvlc_release(libvlc);
 
    // Close window and clean up libSDL.
    SDL_DestroyMutex(ctx.mutex);
    SDL_DestroyRenderer(ctx.renderer);
 
    quit(0);
 
    return 0;
}

相關推薦

vlc sdl 播放視訊視窗改變大小

#include <stdio.h> #include <stdint.h> #include <math.h> #include <stdlib.h> #include <assert.h>   #include

js實現字型和容器寬高視窗改變

  用於字型大小和容器的寬高字型和寬高設為rem就可以了 var html = document.documentElement;   function fonts(){   var hW = html.offsetWidth;     var&

設定html的根rem(視窗改變自動調整)

(function(doc, win) { var docEl = doc.documentElement, resizeEvt = 'orientationchange' in

[2] SDL的基礎知識以及利用SDL播放視訊

日期:2016.10.1 作者:isshe github:github.com/isshe 郵箱:[email protected] SDL基礎知識 SDL結構圖 SDL函式呼叫的一般流程 最最主要操作的函式是S

Ext3.2.2 表格視窗改變動態適應窗體大小

首先是要有個表格物件var grid = new Ext.grid.GridPanel({ bodyStyle:'width:100%', store: store, columns: columns, stripeRows: true, au

WPF 無框視窗改變大小

過載WndProc函式  捕獲WM_NCHITTEST訊息,網上有很多wpf五礦窗體改變大小的程式碼。。。而且都是一樣的。。。。 我也是看了一個帖子之後才明白的 其中的一段程式碼可以借鑑: <Window x:Class="WpfTest.Window1"   

MFC控制元件視窗大小變化,多次縮放不改變位置

MFC控制元件隨視窗大小變化,多次縮放不影響位置 void CMyCefTestDlg::OnSize(UINT nType, int cx, int cy) { CDialogEx::OnSize(nType, cx, cy); // TODO: 在此處新

FFmpeg + SDL視訊播放器的製作(6)

FFmpeg + SDL的視訊播放器的製作(6)   FFmpeg和SDL的整合實現視訊播放 脫離開發環境的獨立播放器 /** * 最簡單的基於FFmpeg的視訊播放器2(SDL升級版) * Simplest FFmpeg Player 2(SDL Update) *

FFmpeg + SDL視訊播放器的製作(5)

FFmpeg + SDL的視訊播放器的製作(5)   SDL函式 進階練習 視窗可以移動 視窗可以調整大小   /** * 最簡單的SDL2播放視訊的例子(SDL2播放RGB/YUV) * Simplest Video Play SDL2 (SDL

FFmpeg + SDL視訊播放器的製作(4)

FFmpeg + SDL的視訊播放器的製作(4)   SDL的函式和資料結構 二倍速度 二倍寬度 視窗大小固定為500X500 視訊周圍包圍10畫素的“黑框” 換一段測試YUV素材進行播放   示例程式: /** * 最簡單的SDL2播放

FFmpeg + SDL視訊播放器的製作(3)

 FFmpeg + SDL的視訊播放器的製作(3)   ffmpeg解碼的函式和資料結構 例項程式執行:simplest_ffmpeg_decoder.cpp /** * 最簡單的基於FFmpeg的解碼器 * Simplest FFmpeg Decoder

FFmpeg + SDL視訊播放器的製作(1)

FFmpeg + SDL的視訊播放器的製作(1)   FFmpeg:視音訊解碼 SDL:視訊顯示 合起來就是播放器。     封裝格式:MP4,RMVB,TS,FLV,AVI 視訊編碼資料:H.264,MPEG2,VC-1 音訊編碼資

100行程式碼實現最簡單的基於FFMPEG+SDL視訊播放器(SDL1.x)

                =====================================================最簡單的基於FFmpeg的視訊播放器系列文章列表:=====================================================簡介FFMPEG

最簡單的基於FFMPEG+SDL視訊播放器 ver2 (採用SDL2.0

                =====================================================最簡單的基於FFmpeg的視訊播放器系列文章列表:=====================================================簡介之前做過一個

Android應用內設定多語言,系統語言改變改變,也設定app為固定語言不受系統語言影響

轉載請標明出處: https://blog.csdn.net/m0_38074457/article/details/84993366,本文出自:【陳少華的部落格】 一、效果圖 https://github.com/hnsycsxhzcsh/MultiLanguage/blob/mas

js頭部設定瀏覽器字型大小視窗大小改變

<script> /* 長寬佔位 rem演算法, 根據root的rem來計算各元素相對rem, 預設html 320/20 = 16px */ /* 長寬佔位 rem演算法, 根據root的rem來計算各元素相對rem, 預設html 320/20 =

《基於 FFmpeg + SDL視訊播放器的製作》課程的視訊

這兩天開始帶廣播電視工程大二的暑假小學期的課程設計了。本次小學期課程內容為《基於 FFmpeg + SDL 的視訊播放器的製作》,其中主要講述了視音訊開發的入門知識。由於感覺本課程的內容不但適合本科生,而且也比較適合無視音訊基礎的開發者入門使用,所以在講課的同時也錄製了一部分

背景圖片有邊框線條. 內容自動適應. 自動視窗寬度的改變改變.

如下效果圖. 這個圖片的邊框.寬度隨瀏覽器的寬度而變化. 內容也按照原定比例縮小.並且保持比例.使得看上去協調與美工設計的無差別.   <style> .yiguoqi

最簡單的基於FFMPEG+SDL視訊播放器:拆分-解碼器和播放

=====================================================最簡單的基於FFmpeg的視訊播放器系列文章列表:=====================================================本文補充記錄《

vlc從接收到資料流到播放視訊的過程分析

    VLC API documentation  或者VLC developer documentation    Chapter 5.  The video output layer  Data structures and main loop  Important data structures ar