Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: litex-hub/jpeg_encoder_gsoc2017_ishan-bansal
base: da7be45709f5
Choose a base ref
...
head repository: litex-hub/jpeg_encoder_gsoc2017_ishan-bansal
compare: 2bd67e5ca9e0
Choose a head ref
  • 13 commits
  • 8 files changed
  • 2 contributors

Commits on Jul 14, 2017

  1. Adding RLE core

    ishan98 committed Jul 14, 2017
    Copy the full SHA
    4ba2f02 View commit details
    Browse the repository at this point in the history
  2. Rearranging RLE module

    ishan98 committed Jul 14, 2017
    Copy the full SHA
    fb063a4 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2017

  1. Copy the full SHA
    a51c88f View commit details
    Browse the repository at this point in the history
  2. Minor Spell correction

    ishan98 committed Jul 17, 2017
    Copy the full SHA
    18ae9f3 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2017

  1. Modifying Runlength

    ishan98 committed Jul 19, 2017
    Copy the full SHA
    c078b99 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2017

  1. Adding Indentaion

    ishan98 committed Aug 20, 2017
    Copy the full SHA
    39e2e68 View commit details
    Browse the repository at this point in the history
  2. Updating RLE

    ishan98 committed Aug 20, 2017
    Copy the full SHA
    13932da View commit details
    Browse the repository at this point in the history
  3. Updating RLE

    ishan98 committed Aug 20, 2017
    Copy the full SHA
    8b4f6a0 View commit details
    Browse the repository at this point in the history
  4. Upadate RLE v2

    ishan98 committed Aug 20, 2017
    Copy the full SHA
    912ad02 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2017

  1. Updated RLEv3

    ishan98 committed Aug 27, 2017
    Copy the full SHA
    e6ad7ad View commit details
    Browse the repository at this point in the history
  2. Updating RLEv4

    ishan98 committed Aug 27, 2017
    Copy the full SHA
    5edda6b View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2017

  1. Updating v5

    ishan98 committed Aug 28, 2017
    Copy the full SHA
    4107904 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2017

  1. Merge pull request #2 from ishan98/rle-core

    Adding RLE-core module for JPEG encoder
    
    > This includes the addition of **RLE module to the JPEG encoder** with Test Bench : 
    > 
    > **RLE module** : 
    > The module takes an input_data and generate an output compressing all the zeros within two non-zero values in the form of runlength, which is used to compress the image.
    > **RLEmain.py** : 
    > Connect the input to both the RLEcore and the Entrophycoder.
    > **RLEcore.py** : 
    > Takes the input and calculate the runlength that is number of zeros between two non-zero values.
    > **Entrophycoder.py** : 
    > Takes the input of the non-zero amplitude and calculate the number of bits required to store that amplitude.
    > 
    > **Test Bench** : 
    > new_rlemain_tb.py
    > new_entrophycoder_tb.py
    > new_rlecore_tb.py
    > This three modules are made for the testing of the RLEmain, Entrophycoder and RLEcore respectively.
    > 
    > **Common.py** : 
    > Added input_data for testing the RLE module and various functions such as setdata() to get the input and output in the required format.
    > 
    > After adding the above changes, the resultant repository contains the **working model of the RLE module along with the test suite**.
    mithro committed Aug 31, 2017
    Copy the full SHA
    2bd67e5 View commit details
    Browse the repository at this point in the history